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