change java version to 1.6

- This should solve the Override-Annotation error
This commit is contained in:
Thomas Chojecki
2015-02-21 18:09:02 +01:00
parent 7286d1412d
commit 5329fd378b
2 changed files with 41 additions and 41 deletions

View File

@@ -1,55 +1,55 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.mustangproject.ZUGFeRD</groupId>
<artifactId>mustang</artifactId>
<version>1.1.1alpha</version>
<groupId>org.mustangproject.ZUGFeRD</groupId>
<artifactId>mustang</artifactId>
<version>1.1.1alpha</version>
<repositories> <repositories>
<repository> <repository>
<id>apache-snapshot</id> <id>apache-snapshot</id>
<url>http://repository.apache.org/content/groups/snapshots</url> <url>http://repository.apache.org/content/groups/snapshots</url>
</repository> </repository>
</repositories> </repositories>
<packaging>jar</packaging>
<name>mustang</name> <packaging>jar</packaging>
<url>http://maven.apache.org</url>
<properties> <name>mustang</name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <url>http://maven.apache.org</url>
</properties>
<build> <properties>
<plugins> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<plugin> </properties>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <build>
<version>2.3.2</version> <plugins>
<configuration> <plugin>
<source>1.5</source> <groupId>org.apache.maven.plugins</groupId>
<target>1.5</target> <artifactId>maven-compiler-plugin</artifactId>
</configuration> <version>3.2</version>
</plugin> <configuration>
</plugins> <source>1.6</source>
</build> <target>1.6</target>
<dependencies> </configuration>
</plugin>
<dependency> </plugins>
<groupId>org.apache.pdfbox</groupId> </build>
<artifactId>pdfbox</artifactId>
<version>1.8.6</version> <dependencies>
<scope>compile</scope> <dependency>
</dependency> <groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>1.8.6</version>
<scope>compile</scope>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.11</version> <version>4.11</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

Binary file not shown.