Archive

Archive for the ‘Compiler’ Category

Apache Maven. Compiler JVM Compliance level / Compilador Nivel de especificación JVM

November 22nd, 2009

At your pom.xml / En tu fichero pom.xml:

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<configuration>
		<source>1.6</source>
		<target>1.6</target>
	</configuration>
</plugin>

Compiler, HowTo, Java, Maven , , ,