Updated version of maven-compiler-plugin to the newest version (3.1).

Changed name.
This commit is contained in:
shing19m 2013-07-23 21:04:59 +02:00
parent a8129640b3
commit 89c5f8eacc
1 changed files with 6 additions and 14 deletions

20
pom.xml
View File

@ -7,24 +7,16 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>mavenExecutableJarFiles</artifactId>
<packaging>jar</packaging>
<version>0.1</version>
<name>Ausführbare Jar-Dateien mit Maven</name>
<name>Ausfuehrbare Jar-Dateien mit Maven</name>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>2.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>
1.5
</source>
<target>
1.5
</target>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>