5c70ea41d5cef7506885f16cbf69e4ad3bca6700
[examples/facebook-app] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3   xmlns="http://maven.apache.org/POM/4.0.0"
4   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5   xsi:schemaLocation="
6     http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd
7   ">
8
9   <modelVersion>4.0.0</modelVersion>
10
11   <groupId>de.juplo.examples</groupId>
12   <artifactId>facebook-app</artifactId>
13   <version>1.0-SNAPSHOT</version>
14
15   <parent>
16     <groupId>org.springframework.boot</groupId>
17     <artifactId>spring-boot-starter-parent</artifactId>
18     <version>1.3.1.RELEASE</version>
19   </parent>
20
21   <organization>
22     <name>juplo - Java bits from nerds for nerds</name>
23     <url>http://juplo.de</url>
24   </organization>
25
26   <properties>
27     <java.version>1.8</java.version>
28     <!-- settings for the Graph-API -->
29     <facebook.app.id>NOT_SET</facebook.app.id>
30     <facebook.app.secret>NOT_SET</facebook.app.secret>
31     <facebook.app.canvas>NOT_SET</facebook.app.canvas>
32     <!-- settings for the Apache Commons Http-Client -->
33     <httpclient.timeout.connection>60000</httpclient.timeout.connection>
34     <httpclient.timeout.read>60000</httpclient.timeout.read>
35     <httpclient.logging.level>ERROR</httpclient.logging.level>
36   </properties>
37
38   <dependencies>
39     <dependency>
40       <groupId>org.springframework.boot</groupId>
41       <artifactId>spring-boot-starter-thymeleaf</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.springframework.boot</groupId>
45       <artifactId>spring-boot-starter-security</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.springframework.social</groupId>
49       <artifactId>spring-social-facebook</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.slf4j</groupId>
53       <artifactId>slf4j-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.springframework.social</groupId>
57       <artifactId>spring-social-facebook-web</artifactId>
58     </dependency>
59     <!-- Httpclient -->
60     <dependency>
61       <groupId>org.apache.httpcomponents</groupId>
62       <artifactId>httpclient</artifactId>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.springframework.boot</groupId>
70         <artifactId>spring-boot-maven-plugin</artifactId>
71       </plugin>
72     </plugins>
73   </build>
74
75 </project>