Updated version of maven-compiler-plugin to the newest version (3.1).
This commit is contained in:
parent
4c09289e9a
commit
ecbc1104a0
21
pom.xml
21
pom.xml
|
@ -7,25 +7,16 @@
|
|||
<artifactId>basics1</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>0.1</version>
|
||||
<name>Einfuehrung in Maven</name>
|
||||
<url>http://wp.lusiardi.de/?p=197</url>
|
||||
<name>Einfuehrung in Maven (1)</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>
|
||||
|
|
Loading…
Reference in New Issue