Upgraded Spring Boot from 1.3.7.RELEASE to 2.2.0.RELEASE
[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>2.2.0.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>5.0-SNAPSHOT</version>
17   <packaging>jar</packaging>
18   <url>http://juplo.de/facebook-errors</url>
19
20
21
22   <licenses>
23     <license>
24       <name>The Apache Software License, Version 2.0</name>
25       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
26       <distribution>repo</distribution>
27       <comments>A business-friendly OSS license</comments>
28     </license>
29   </licenses>
30
31   <scm>
32     <connection>scm:git:http://juplo.de/git/facebook-errors</connection>
33     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/facebook-errors</developerConnection>
34     <url>http://juplo.de/gitweb/?p=facebook-errors;a=summary</url>
35   </scm>
36
37
38   <developers>
39     <developer>
40       <id>kai</id>
41       <name>Kai Moritz</name>
42       <email>kai@juplo.de</email>
43     </developer>
44   </developers>
45
46   <contributors>
47   </contributors>
48
49
50   <properties>
51
52     <encoding>UTF-8</encoding>
53     <maven.compiler.source>1.8</maven.compiler.source>
54     <maven.compiler.target>1.8</maven.compiler.target>
55
56     <!-- character encoding -->
57     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58
59     <sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
60
61   </properties>
62
63
64   <dependencies>
65
66     <!-- Spring-Boot-Autoconfiguration -->
67     <dependency>
68       <groupId>org.springframework.security</groupId>
69       <artifactId>spring-security-oauth2-client</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.springframework</groupId>
73       <artifactId>spring-webmvc</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.springframework.boot</groupId>
77       <artifactId>spring-boot-autoconfigure</artifactId>
78       <optional>true</optional>
79     </dependency>
80
81     <!-- Needed for the mapping of error responses -->
82     <dependency>
83       <groupId>com.fasterxml.jackson.core</groupId>
84       <artifactId>jackson-core</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-databind</artifactId>
89     </dependency>
90
91     <!-- Logging -->
92     <dependency>
93       <groupId>org.slf4j</groupId>
94       <artifactId>slf4j-api</artifactId>
95     </dependency>
96
97     <!-- Testing -->
98     <dependency>
99       <groupId>org.springframework</groupId>
100       <artifactId>spring-test</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.springframework.boot</groupId>
105       <artifactId>spring-boot-configuration-processor</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>javax.servlet</groupId>
110       <artifactId>javax.servlet-api</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>junit</groupId>
115       <artifactId>junit</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.slf4j</groupId>
120       <artifactId>jcl-over-slf4j</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>ch.qos.logback</groupId>
125       <artifactId>logback-classic</artifactId>
126       <scope>test</scope>
127     </dependency>
128
129   </dependencies>
130
131   <repositories>
132     <repository>
133       <releases>
134         <enabled>false</enabled>
135       </releases>
136       <snapshots>
137         <enabled>true</enabled>
138       </snapshots>
139       <id>sonatype-nexus-snapshots</id>
140       <name>Sonatype Nexus Snapshots</name>
141       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
142     </repository>
143     <repository>
144       <snapshots>
145         <enabled>false</enabled>
146       </snapshots>
147       <id>central</id>
148       <name>Central Repository</name>
149       <url>http://repo.maven.apache.org/maven2</url>
150     </repository>
151   </repositories>
152
153   <distributionManagement>
154     <site>
155       <id>juplo.de</id>
156       <url>scpexe://juplo.de/var/www/juplo.de/facebook-errors-${project.version}</url>
157     </site>
158     <repository>
159       <id>sonatype-nexus-staging</id>
160       <name>Nexus Release Repository</name>
161       <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
162     </repository>
163     <snapshotRepository>
164       <id>sonatype-nexus-snapshots</id>
165       <name>Sonatype Nexus Snapshots</name>
166       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
167     </snapshotRepository>
168   </distributionManagement>
169
170
171   <build>
172     <pluginManagement>
173       <plugins>
174         <plugin>
175           <artifactId>maven-release-plugin</artifactId>
176           <version>2.1</version>
177           <configuration>
178             <mavenExecutorId>forked-path</mavenExecutorId>
179             <useReleaseProfile>false</useReleaseProfile>
180             <arguments>-Psonatype-oss-release</arguments>
181           </configuration>
182         </plugin>
183         <plugin>
184           <artifactId>maven-site-plugin</artifactId>
185           <version>3.4</version>
186           <configuration>
187             <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
188             <templateFile>src/site/template.vm</templateFile>
189           </configuration>
190         </plugin>
191       </plugins>
192     </pluginManagement>
193     <plugins>
194       <plugin>
195         <artifactId>maven-enforcer-plugin</artifactId>
196         <version>1.2</version>
197         <executions>
198           <execution>
199             <id>enforce-maven</id>
200             <goals>
201               <goal>enforce</goal>
202             </goals>
203             <configuration>
204               <rules>
205                 <requireMavenVersion>
206                   <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
207                   <message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
208                 </requireMavenVersion>
209               </rules>
210             </configuration>
211           </execution>
212         </executions>
213       </plugin>
214       <plugin>
215         <groupId>org.apache.maven.plugins</groupId>
216         <artifactId>maven-compiler-plugin</artifactId>
217         <version>3.3</version>
218         <configuration>
219           <showWarnings>true</showWarnings>
220         </configuration>
221       </plugin>
222       <plugin>
223         <groupId>org.apache.maven.plugins</groupId>
224         <artifactId>maven-source-plugin</artifactId>
225         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
226         <executions>
227           <execution>
228             <id>attach-sources</id>
229             <phase>verify</phase>
230             <goals>
231               <goal>jar</goal>
232             </goals>
233           </execution>
234         </executions>
235       </plugin>
236       <plugin>
237         <groupId>org.apache.maven.plugins</groupId>
238         <artifactId>maven-javadoc-plugin</artifactId>
239         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
240         <configuration>
241           <additionalparam>-Xdoclint:none</additionalparam>
242         </configuration>
243         <executions>
244           <execution>
245             <id>attach-javadoc</id>
246             <phase>verify</phase>
247             <goals>
248               <goal>jar</goal>
249             </goals>
250           </execution>
251         </executions>
252       </plugin>
253       <plugin>
254         <groupId>org.apache.maven.plugins</groupId>
255         <artifactId>maven-resources-plugin</artifactId>
256         <version>2.7</version>
257         <executions>
258           <execution>
259             <id>copy-resources</id>
260             <phase>pre-site</phase>
261             <goals>
262               <goal>copy-resources</goal>
263             </goals>
264             <configuration>
265               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
266               <resources>
267                 <resource>
268                   <directory>src/site</directory>
269                   <filtering>true</filtering>
270                 </resource>
271               </resources>
272             </configuration>
273           </execution>
274         </executions>
275       </plugin>
276     </plugins>
277     <extensions>
278       <!-- Enabling the use of SSH -->
279       <extension>
280         <groupId>org.apache.maven.wagon</groupId>
281          <artifactId>wagon-ssh-external</artifactId>
282          <version>2.10</version>
283       </extension>
284     </extensions>
285   </build>
286
287
288   <reporting>
289     <plugins>
290       <plugin>
291         <groupId>org.apache.maven.plugins</groupId>
292         <artifactId>maven-changes-plugin</artifactId>
293         <version>2.11</version>
294       </plugin>
295       <plugin>
296         <groupId>org.apache.maven.plugins</groupId>
297         <artifactId>maven-javadoc-plugin</artifactId>
298         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
299         <configuration>
300           <additionalparam>-Xdoclint:none</additionalparam>
301         </configuration>
302       </plugin>
303       <plugin>
304         <groupId>org.apache.maven.plugins</groupId>
305         <artifactId>maven-jxr-plugin</artifactId>
306         <version>2.5</version>
307       </plugin>
308       <plugin>
309         <groupId>org.apache.maven.plugins</groupId>
310         <artifactId>maven-surefire-report-plugin</artifactId>
311         <version>2.18.1</version>
312       </plugin>
313       <plugin>
314         <groupId>org.apache.maven.plugins</groupId>
315         <artifactId>maven-scm-plugin</artifactId>
316         <version>1.9.4</version>
317         <configuration>
318           <goals>install</goals>
319         </configuration>
320       </plugin>
321       <plugin>
322         <artifactId>maven-pmd-plugin</artifactId>
323         <version>3.5</version>
324         <configuration>
325           <linkXref>true</linkXref>
326           <targetJdk>1.6</targetJdk>
327         </configuration>
328       </plugin>
329     </plugins>
330   </reporting>
331
332 </project>