Managing compiler-version through maven.compiler.*-settings
[facebook-errors] / pom.xml
diff --git a/pom.xml b/pom.xml
index c30c397..aff5b72 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 
 
   <groupId>de.juplo</groupId>
-  <artifactId>facebook-utils</artifactId>
-  <name>Juplo - Facebook Utils</name>
-  <description>Collection of usefull classes for communicating with the Facebook-Graph-API</description>
-  <version>1.1-SNAPSHOT</version>
+  <artifactId>facebook-errors</artifactId>
+  <name>Juplo - Facebook-Errors</name>
+  <description>Helper-Classes to handle errors, thrown by the Graph-API from Facebook</description>
+  <version>2.5-SNAPSHOT</version>
   <packaging>jar</packaging>
-  <url>http://www.juplo.de/facebook-utils</url>
+  <url>http://www.juplo.de/facebook-errors</url>
 
 
   <prerequisites>
@@ -33,9 +33,9 @@
   </licenses>
 
   <scm>
-    <connection>scm:git:http://juplo.de/git/facebook-utils</connection>
-    <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/facebook-utils</developerConnection>
-    <url>http://juplo.de/gitweb/?p=facebook-utils;a=summary</url>
+    <connection>scm:git:http://juplo.de/git/facebook-errors</connection>
+    <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/facebook-errors</developerConnection>
+    <url>http://juplo.de/gitweb/?p=facebook-errors;a=summary</url>
   </scm>
 
 
 
   <properties>
 
+    <encoding>UTF-8</encoding>
+    <maven.compiler.source>1.7</maven.compiler.source>
+    <maven.compiler.target>1.7</maven.compiler.target>
+
     <!-- character encoding -->
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
     <!-- used versions -->
     <commons-codec.version>1.7</commons-codec.version>
-    <aspectj.version>1.8.5</aspectj.version>
     <jackson.version>2.6.2</jackson.version>
     <junit.version>4.12</junit.version>
     <logback.version>1.1.3</logback.version>
       <scope>provided</scope>
     </dependency>
 
-    <!-- Needed to compile agains spring-security-oauth2 -->
+    <!-- Needed for the mapping of error responses -->
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+      <version>${jackson.version}</version>
+    </dependency>
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-databind</artifactId>
       <version>${jackson.version}</version>
     </dependency>
+
+    <!-- Needed to compile agains spring-security-oauth2 -->
     <dependency>
       <groupId>org.springframework.security</groupId>
       <artifactId>spring-security-core</artifactId>
       </exclusions>
     </dependency>
 
-    <!-- AspectJ -->
-    <dependency>
-      <groupId>org.aspectj</groupId>
-      <artifactId>aspectjrt</artifactId>
-      <version>${aspectj.version}</version>
-      <scope>provided</scope>
-    </dependency>
-
     <!-- commons-codec -->
     <dependency>
       <groupId>commons-codec</groupId>
   <distributionManagement>
     <site>
       <id>www.juplo.de</id>
-      <url>scp://juplo.de/var/www/juplo/facebook-utils-${project.version}</url>
+      <url>scp://juplo.de/var/www/juplo/facebook-errors-${project.version}</url>
     </site>
   </distributionManagement>
 
         <artifactId>maven-compiler-plugin</artifactId>
         <version>3.3</version>
         <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
-          <encoding>utf8</encoding>
           <showWarnings>true</showWarnings>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>aspectj-maven-plugin</artifactId>
-        <version>1.8</version>
-        <configuration>
-          <complianceLevel>1.7</complianceLevel>
-        </configuration>
-        <executions>
-          <execution>
-            <goals>
-              <goal>compile</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
         <version>3.5</version>
         <configuration>
           <linkXref>true</linkXref>
-          <targetJdk>1.5</targetJdk>
         </configuration>
       </plugin>
     </plugins>