a8276e522728d8b97c6a412c5eec52535f1405bc
[facebook-utils] / 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.sonatype.oss</groupId>
7     <artifactId>oss-parent</artifactId>
8     <version>9</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.0-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     <!-- character encoding -->
57     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58
59     <!-- used versions -->
60     <jackson.version>2.6.2</jackson.version>
61     <junit.version>4.12</junit.version>
62     <logback.version>1.1.3</logback.version>
63     <slf4j.version>1.7.12</slf4j.version>
64     <springframework.version>4.2.1.RELEASE</springframework.version>
65
66   </properties>
67
68
69   <dependencies>
70
71     <!-- Spring -->
72     <dependency>
73       <groupId>org.springframework</groupId>
74       <artifactId>spring-webmvc</artifactId>
75       <version>${springframework.version}</version>
76       <exclusions>
77         <exclusion>
78             <groupId>commons-logging</groupId>
79             <artifactId>commons-logging</artifactId>
80         </exclusion>
81       </exclusions>
82       <scope>provided</scope>
83     </dependency>
84
85     <!-- Needed for the mapping of error responses -->
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-core</artifactId>
89       <version>${jackson.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>com.fasterxml.jackson.core</groupId>
93       <artifactId>jackson-databind</artifactId>
94       <version>${jackson.version}</version>
95     </dependency>
96
97     <!-- Logging -->
98     <dependency>
99       <groupId>org.slf4j</groupId>
100       <artifactId>slf4j-api</artifactId>
101       <version>${slf4j.version}</version>
102     </dependency>
103
104     <!-- Testing -->
105     <dependency>
106       <groupId>junit</groupId>
107       <artifactId>junit</artifactId>
108       <version>${junit.version}</version>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.springframework</groupId>
113       <artifactId>spring-test</artifactId>
114       <version>${springframework.version}</version>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.slf4j</groupId>
119       <artifactId>jcl-over-slf4j</artifactId>
120       <version>${slf4j.version}</version>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>ch.qos.logback</groupId>
125       <artifactId>logback-classic</artifactId>
126       <version>${logback.version}</version>
127       <scope>test</scope>
128       <exclusions>
129         <exclusion>
130           <groupId>org.slf4j</groupId>
131           <artifactId>slf4j-api</artifactId>
132         </exclusion>
133       </exclusions>
134     </dependency>
135
136   </dependencies>
137
138
139   <distributionManagement>
140     <site>
141       <id>www.juplo.de</id>
142       <url>scp://juplo.de/var/www/juplo/facebook-errors-${project.version}</url>
143     </site>
144   </distributionManagement>
145
146
147   <build>
148     <plugins>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-compiler-plugin</artifactId>
152         <version>3.3</version>
153         <configuration>
154           <source>1.7</source>
155           <target>1.7</target>
156           <encoding>utf8</encoding>
157           <showWarnings>true</showWarnings>
158         </configuration>
159       </plugin>
160       <plugin>
161         <groupId>org.codehaus.mojo</groupId>
162         <artifactId>aspectj-maven-plugin</artifactId>
163         <version>1.8</version>
164         <configuration>
165           <complianceLevel>1.7</complianceLevel>
166         </configuration>
167         <executions>
168           <execution>
169             <goals>
170               <goal>compile</goal>
171             </goals>
172           </execution>
173         </executions>
174       </plugin>
175       <plugin>
176         <groupId>org.apache.maven.plugins</groupId>
177         <artifactId>maven-source-plugin</artifactId>
178         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
179         <executions>
180           <execution>
181             <id>attach-sources</id>
182             <phase>verify</phase>
183             <goals>
184               <goal>jar</goal>
185             </goals>
186           </execution>
187         </executions>
188       </plugin>
189     </plugins>
190   </build>
191
192
193   <reporting>
194     <plugins>
195       <plugin>
196         <groupId>org.apache.maven.plugins</groupId>
197         <artifactId>maven-changes-plugin</artifactId>
198         <version>2.11</version>
199       </plugin>
200       <plugin>
201         <groupId>org.apache.maven.plugins</groupId>
202         <artifactId>maven-javadoc-plugin</artifactId>
203         <version>2.10.3</version>
204       </plugin>
205       <plugin>
206         <groupId>org.apache.maven.plugins</groupId>
207         <artifactId>maven-jxr-plugin</artifactId>
208         <version>2.5</version>
209       </plugin>
210       <plugin>
211         <groupId>org.apache.maven.plugins</groupId>
212         <artifactId>maven-surefire-report-plugin</artifactId>
213         <version>2.18.1</version>
214       </plugin>
215       <plugin>
216         <groupId>org.apache.maven.plugins</groupId>
217         <artifactId>maven-scm-plugin</artifactId>
218         <version>1.9.4</version>
219         <configuration>
220           <goals>install</goals>
221         </configuration>
222       </plugin>
223       <plugin>
224         <groupId>org.apache.maven.plugins</groupId>
225         <artifactId>maven-pmd-plugin</artifactId>
226         <version>3.5</version>
227         <configuration>
228           <linkXref>true</linkXref>
229           <targetJdk>1.5</targetJdk>
230         </configuration>
231       </plugin>
232     </plugins>
233   </reporting>
234
235 </project>