WIP
[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     </dependency>
83
84     <!-- Needed for the mapping of error responses -->
85     <dependency>
86       <groupId>com.fasterxml.jackson.core</groupId>
87       <artifactId>jackson-core</artifactId>
88       <version>${jackson.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>com.fasterxml.jackson.core</groupId>
92       <artifactId>jackson-databind</artifactId>
93       <version>${jackson.version}</version>
94     </dependency>
95
96     <!-- Logging -->
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-api</artifactId>
100       <version>${slf4j.version}</version>
101     </dependency>
102
103     <!-- Testing -->
104     <dependency>
105       <groupId>junit</groupId>
106       <artifactId>junit</artifactId>
107       <version>${junit.version}</version>
108       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.slf4j</groupId>
112       <artifactId>jcl-over-slf4j</artifactId>
113       <version>${slf4j.version}</version>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>ch.qos.logback</groupId>
118       <artifactId>logback-classic</artifactId>
119       <version>${logback.version}</version>
120       <scope>test</scope>
121       <exclusions>
122         <exclusion>
123           <groupId>org.slf4j</groupId>
124           <artifactId>slf4j-api</artifactId>
125         </exclusion>
126       </exclusions>
127     </dependency>
128
129   </dependencies>
130
131
132   <distributionManagement>
133     <site>
134       <id>www.juplo.de</id>
135       <url>scp://juplo.de/var/www/juplo/facebook-errors-${project.version}</url>
136     </site>
137   </distributionManagement>
138
139
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.apache.maven.plugins</groupId>
144         <artifactId>maven-compiler-plugin</artifactId>
145         <version>3.3</version>
146         <configuration>
147           <source>1.8</source>
148           <target>1.8</target>
149           <encoding>utf8</encoding>
150           <showWarnings>true</showWarnings>
151         </configuration>
152       </plugin>
153       <plugin>
154         <groupId>org.apache.maven.plugins</groupId>
155         <artifactId>maven-source-plugin</artifactId>
156         <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
157         <executions>
158           <execution>
159             <id>attach-sources</id>
160             <phase>verify</phase>
161             <goals>
162               <goal>jar</goal>
163             </goals>
164           </execution>
165         </executions>
166       </plugin>
167     </plugins>
168   </build>
169
170
171   <reporting>
172     <plugins>
173       <plugin>
174         <groupId>org.apache.maven.plugins</groupId>
175         <artifactId>maven-changes-plugin</artifactId>
176         <version>2.11</version>
177       </plugin>
178       <plugin>
179         <groupId>org.apache.maven.plugins</groupId>
180         <artifactId>maven-javadoc-plugin</artifactId>
181         <version>2.10.3</version>
182       </plugin>
183       <plugin>
184         <groupId>org.apache.maven.plugins</groupId>
185         <artifactId>maven-jxr-plugin</artifactId>
186         <version>2.5</version>
187       </plugin>
188       <plugin>
189         <groupId>org.apache.maven.plugins</groupId>
190         <artifactId>maven-surefire-report-plugin</artifactId>
191         <version>2.18.1</version>
192       </plugin>
193       <plugin>
194         <groupId>org.apache.maven.plugins</groupId>
195         <artifactId>maven-scm-plugin</artifactId>
196         <version>1.9.4</version>
197         <configuration>
198           <goals>install</goals>
199         </configuration>
200       </plugin>
201       <plugin>
202         <groupId>org.apache.maven.plugins</groupId>
203         <artifactId>maven-pmd-plugin</artifactId>
204         <version>3.5</version>
205         <configuration>
206           <linkXref>true</linkXref>
207           <targetJdk>1.5</targetJdk>
208         </configuration>
209       </plugin>
210     </plugins>
211   </reporting>
212
213 </project>