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