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