Cleand up dependencies
[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.5.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>2.5-SNAPSHOT</version>
17   <packaging>jar</packaging>
18   <url>http://www.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   </properties>
64
65
66   <dependencies>
67
68     <!-- Spring -->
69     <dependency>
70       <groupId>org.springframework.social</groupId>
71       <artifactId>spring-social-facebook</artifactId>
72       <optional>true</optional>
73     </dependency>
74     <dependency>
75       <groupId>org.springframework.security.oauth</groupId>
76       <artifactId>spring-security-oauth2</artifactId>
77       <optional>true</optional>
78     </dependency>
79
80     <!-- Needed for the mapping of error responses -->
81     <dependency>
82       <groupId>com.fasterxml.jackson.core</groupId>
83       <artifactId>jackson-core</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>com.fasterxml.jackson.core</groupId>
87       <artifactId>jackson-databind</artifactId>
88     </dependency>
89
90     <!-- Logging -->
91     <dependency>
92       <groupId>org.slf4j</groupId>
93       <artifactId>slf4j-api</artifactId>
94     </dependency>
95
96     <!-- Testing -->
97     <dependency>
98       <groupId>org.springframework</groupId>
99       <artifactId>spring-test</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>junit</groupId>
104       <artifactId>junit</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.slf4j</groupId>
109       <artifactId>jcl-over-slf4j</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>ch.qos.logback</groupId>
114       <artifactId>logback-classic</artifactId>
115       <scope>test</scope>
116     </dependency>
117
118   </dependencies>
119
120
121   <distributionManagement>
122     <site>
123       <id>www.juplo.de</id>
124       <url>scp://juplo.de/var/www/juplo/facebook-errors-${project.version}</url>
125     </site>
126   </distributionManagement>
127
128
129   <build>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-compiler-plugin</artifactId>
134         <version>3.3</version>
135         <configuration>
136           <showWarnings>true</showWarnings>
137         </configuration>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-source-plugin</artifactId>
142         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
143         <executions>
144           <execution>
145             <id>attach-sources</id>
146             <phase>verify</phase>
147             <goals>
148               <goal>jar</goal>
149             </goals>
150           </execution>
151         </executions>
152       </plugin>
153     </plugins>
154   </build>
155
156
157   <reporting>
158     <plugins>
159       <plugin>
160         <groupId>org.apache.maven.plugins</groupId>
161         <artifactId>maven-changes-plugin</artifactId>
162         <version>2.11</version>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-javadoc-plugin</artifactId>
167         <version>2.10.3</version>
168       </plugin>
169       <plugin>
170         <groupId>org.apache.maven.plugins</groupId>
171         <artifactId>maven-jxr-plugin</artifactId>
172         <version>2.5</version>
173       </plugin>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-surefire-report-plugin</artifactId>
177         <version>2.18.1</version>
178       </plugin>
179       <plugin>
180         <groupId>org.apache.maven.plugins</groupId>
181         <artifactId>maven-scm-plugin</artifactId>
182         <version>1.9.4</version>
183         <configuration>
184           <goals>install</goals>
185         </configuration>
186       </plugin>
187       <plugin>
188         <groupId>org.apache.maven.plugins</groupId>
189         <artifactId>maven-pmd-plugin</artifactId>
190         <version>3.5</version>
191         <configuration>
192           <linkXref>true</linkXref>
193         </configuration>
194       </plugin>
195     </plugins>
196   </reporting>
197
198 </project>