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