Clearified intend in GraphApiErrorResponseErrorHandlerIntegrationTest
[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>com.squareup.okhttp3</groupId>
110       <artifactId>mockwebserver</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>javax.servlet</groupId>
115       <artifactId>javax.servlet-api</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>junit</groupId>
120       <artifactId>junit</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.slf4j</groupId>
125       <artifactId>jcl-over-slf4j</artifactId>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>ch.qos.logback</groupId>
130       <artifactId>logback-classic</artifactId>
131       <scope>test</scope>
132     </dependency>
133
134   </dependencies>
135
136   <repositories>
137     <repository>
138       <releases>
139         <enabled>false</enabled>
140       </releases>
141       <snapshots>
142         <enabled>true</enabled>
143       </snapshots>
144       <id>sonatype-nexus-snapshots</id>
145       <name>Sonatype Nexus Snapshots</name>
146       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
147     </repository>
148     <repository>
149       <snapshots>
150         <enabled>false</enabled>
151       </snapshots>
152       <id>central</id>
153       <name>Central Repository</name>
154       <url>http://repo.maven.apache.org/maven2</url>
155     </repository>
156   </repositories>
157
158   <distributionManagement>
159     <site>
160       <id>juplo.de</id>
161       <url>scpexe://juplo.de/var/www/juplo.de/facebook-errors-${project.version}</url>
162     </site>
163     <repository>
164       <id>sonatype-nexus-staging</id>
165       <name>Nexus Release Repository</name>
166       <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
167     </repository>
168     <snapshotRepository>
169       <id>sonatype-nexus-snapshots</id>
170       <name>Sonatype Nexus Snapshots</name>
171       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
172     </snapshotRepository>
173   </distributionManagement>
174
175
176   <build>
177     <pluginManagement>
178       <plugins>
179         <plugin>
180           <artifactId>maven-release-plugin</artifactId>
181           <version>2.1</version>
182           <configuration>
183             <mavenExecutorId>forked-path</mavenExecutorId>
184             <useReleaseProfile>false</useReleaseProfile>
185             <arguments>-Psonatype-oss-release</arguments>
186           </configuration>
187         </plugin>
188         <plugin>
189           <artifactId>maven-site-plugin</artifactId>
190           <version>3.4</version>
191           <configuration>
192             <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
193             <templateFile>src/site/template.vm</templateFile>
194           </configuration>
195         </plugin>
196       </plugins>
197     </pluginManagement>
198     <plugins>
199       <plugin>
200         <artifactId>maven-enforcer-plugin</artifactId>
201         <version>1.2</version>
202         <executions>
203           <execution>
204             <id>enforce-maven</id>
205             <goals>
206               <goal>enforce</goal>
207             </goals>
208             <configuration>
209               <rules>
210                 <requireMavenVersion>
211                   <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
212                   <message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
213                 </requireMavenVersion>
214               </rules>
215             </configuration>
216           </execution>
217         </executions>
218       </plugin>
219       <plugin>
220         <groupId>org.apache.maven.plugins</groupId>
221         <artifactId>maven-compiler-plugin</artifactId>
222         <version>3.3</version>
223         <configuration>
224           <showWarnings>true</showWarnings>
225         </configuration>
226       </plugin>
227       <plugin>
228         <groupId>org.apache.maven.plugins</groupId>
229         <artifactId>maven-source-plugin</artifactId>
230         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
231         <executions>
232           <execution>
233             <id>attach-sources</id>
234             <phase>verify</phase>
235             <goals>
236               <goal>jar</goal>
237             </goals>
238           </execution>
239         </executions>
240       </plugin>
241       <plugin>
242         <groupId>org.apache.maven.plugins</groupId>
243         <artifactId>maven-javadoc-plugin</artifactId>
244         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
245         <configuration>
246           <additionalparam>-Xdoclint:none</additionalparam>
247         </configuration>
248         <executions>
249           <execution>
250             <id>attach-javadoc</id>
251             <phase>verify</phase>
252             <goals>
253               <goal>jar</goal>
254             </goals>
255           </execution>
256         </executions>
257       </plugin>
258       <plugin>
259         <groupId>org.apache.maven.plugins</groupId>
260         <artifactId>maven-resources-plugin</artifactId>
261         <version>2.7</version>
262         <executions>
263           <execution>
264             <id>copy-resources</id>
265             <phase>pre-site</phase>
266             <goals>
267               <goal>copy-resources</goal>
268             </goals>
269             <configuration>
270               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
271               <resources>
272                 <resource>
273                   <directory>src/site</directory>
274                   <filtering>true</filtering>
275                 </resource>
276               </resources>
277             </configuration>
278           </execution>
279         </executions>
280       </plugin>
281     </plugins>
282     <extensions>
283       <!-- Enabling the use of SSH -->
284       <extension>
285         <groupId>org.apache.maven.wagon</groupId>
286          <artifactId>wagon-ssh-external</artifactId>
287          <version>2.10</version>
288       </extension>
289     </extensions>
290   </build>
291
292
293   <reporting>
294     <plugins>
295       <plugin>
296         <groupId>org.apache.maven.plugins</groupId>
297         <artifactId>maven-changes-plugin</artifactId>
298         <version>2.11</version>
299       </plugin>
300       <plugin>
301         <groupId>org.apache.maven.plugins</groupId>
302         <artifactId>maven-javadoc-plugin</artifactId>
303         <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
304         <configuration>
305           <additionalparam>-Xdoclint:none</additionalparam>
306         </configuration>
307       </plugin>
308       <plugin>
309         <groupId>org.apache.maven.plugins</groupId>
310         <artifactId>maven-jxr-plugin</artifactId>
311         <version>2.5</version>
312       </plugin>
313       <plugin>
314         <groupId>org.apache.maven.plugins</groupId>
315         <artifactId>maven-surefire-report-plugin</artifactId>
316         <version>2.18.1</version>
317       </plugin>
318       <plugin>
319         <groupId>org.apache.maven.plugins</groupId>
320         <artifactId>maven-scm-plugin</artifactId>
321         <version>1.9.4</version>
322         <configuration>
323           <goals>install</goals>
324         </configuration>
325       </plugin>
326       <plugin>
327         <artifactId>maven-pmd-plugin</artifactId>
328         <version>3.5</version>
329         <configuration>
330           <linkXref>true</linkXref>
331           <targetJdk>1.6</targetJdk>
332         </configuration>
333       </plugin>
334     </plugins>
335   </reporting>
336
337 </project>