Enabled autoconfiguration for Spring-Social and Spring-Security-OAuth2
[facebook-errors] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.springframework.boot</groupId>
7     <artifactId>spring-boot-starter-parent</artifactId>
8     <version>1.3.5.RELEASE</version>
9   </parent>
10
11
12   <groupId>de.juplo</groupId>
13   <artifactId>facebook-errors</artifactId>
14   <name>Juplo - Facebook-Errors</name>
15   <description>Helper-Classes to handle errors, thrown by the Graph-API from Facebook</description>
16   <version>2.5-SNAPSHOT</version>
17   <packaging>jar</packaging>
18   <url>http://www.juplo.de/facebook-errors</url>
19
20
21   <prerequisites>
22     <maven>2.0.6</maven>
23   </prerequisites>
24
25
26   <licenses>
27     <license>
28       <name>The Apache Software License, Version 2.0</name>
29       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30       <distribution>repo</distribution>
31       <comments>A business-friendly OSS license</comments>
32     </license>
33   </licenses>
34
35   <scm>
36     <connection>scm:git:http://juplo.de/git/facebook-errors</connection>
37     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/facebook-errors</developerConnection>
38     <url>http://juplo.de/gitweb/?p=facebook-errors;a=summary</url>
39   </scm>
40
41
42   <developers>
43     <developer>
44       <id>kai</id>
45       <name>Kai Moritz</name>
46       <email>kai@juplo.de</email>
47     </developer>
48   </developers>
49
50   <contributors>
51   </contributors>
52
53
54   <properties>
55
56     <encoding>UTF-8</encoding>
57     <maven.compiler.source>1.8</maven.compiler.source>
58     <maven.compiler.target>1.8</maven.compiler.target>
59
60     <!-- character encoding -->
61     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62
63   </properties>
64
65
66   <dependencies>
67
68     <!-- Spring-Boot-Autoconfiguration -->
69     <dependency>
70       <groupId>org.springframework.boot</groupId>
71       <artifactId>spring-boot-autoconfigure</artifactId>
72       <optional>true</optional>
73     </dependency>
74     <dependency>
75       <groupId>org.springframework.social</groupId>
76       <artifactId>spring-social-facebook</artifactId>
77       <optional>true</optional>
78     </dependency>
79     <dependency>
80       <groupId>org.springframework.security.oauth</groupId>
81       <artifactId>spring-security-oauth2</artifactId>
82       <optional>true</optional>
83     </dependency>
84
85     <!-- Needed for the mapping of error responses -->
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-core</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>com.fasterxml.jackson.core</groupId>
92       <artifactId>jackson-databind</artifactId>
93     </dependency>
94
95     <!-- Logging -->
96     <dependency>
97       <groupId>org.slf4j</groupId>
98       <artifactId>slf4j-api</artifactId>
99     </dependency>
100
101     <!-- Testing -->
102     <dependency>
103       <groupId>org.springframework</groupId>
104       <artifactId>spring-test</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.springframework.boot</groupId>
109       <artifactId>spring-boot-configuration-processor</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>javax.servlet</groupId>
114       <artifactId>javax.servlet-api</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>junit</groupId>
119       <artifactId>junit</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.slf4j</groupId>
124       <artifactId>jcl-over-slf4j</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>ch.qos.logback</groupId>
129       <artifactId>logback-classic</artifactId>
130       <scope>test</scope>
131     </dependency>
132
133   </dependencies>
134
135
136   <distributionManagement>
137     <site>
138       <id>www.juplo.de</id>
139       <url>scp://juplo.de/var/www/juplo/facebook-errors-${project.version}</url>
140     </site>
141   </distributionManagement>
142
143
144   <build>
145     <plugins>
146       <plugin>
147         <groupId>org.apache.maven.plugins</groupId>
148         <artifactId>maven-compiler-plugin</artifactId>
149         <version>3.3</version>
150         <configuration>
151           <showWarnings>true</showWarnings>
152         </configuration>
153       </plugin>
154       <plugin>
155         <groupId>org.apache.maven.plugins</groupId>
156         <artifactId>maven-source-plugin</artifactId>
157         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
158         <executions>
159           <execution>
160             <id>attach-sources</id>
161             <phase>verify</phase>
162             <goals>
163               <goal>jar</goal>
164             </goals>
165           </execution>
166         </executions>
167       </plugin>
168     </plugins>
169   </build>
170
171
172   <reporting>
173     <plugins>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-changes-plugin</artifactId>
177         <version>2.11</version>
178       </plugin>
179       <plugin>
180         <groupId>org.apache.maven.plugins</groupId>
181         <artifactId>maven-javadoc-plugin</artifactId>
182         <version>2.10.3</version>
183       </plugin>
184       <plugin>
185         <groupId>org.apache.maven.plugins</groupId>
186         <artifactId>maven-jxr-plugin</artifactId>
187         <version>2.5</version>
188       </plugin>
189       <plugin>
190         <groupId>org.apache.maven.plugins</groupId>
191         <artifactId>maven-surefire-report-plugin</artifactId>
192         <version>2.18.1</version>
193       </plugin>
194       <plugin>
195         <groupId>org.apache.maven.plugins</groupId>
196         <artifactId>maven-scm-plugin</artifactId>
197         <version>1.9.4</version>
198         <configuration>
199           <goals>install</goals>
200         </configuration>
201       </plugin>
202       <plugin>
203         <groupId>org.apache.maven.plugins</groupId>
204         <artifactId>maven-pmd-plugin</artifactId>
205         <version>3.5</version>
206         <configuration>
207           <linkXref>true</linkXref>
208         </configuration>
209       </plugin>
210     </plugins>
211   </reporting>
212
213 </project>