Apache Maven. Compiler JVM Compliance level / Compilador Nivel de especificación JVM
Posted: November 22nd, 2009 | Author: Edu | Filed under: Compiler, Java, Maven | Tags: Compiler, Java, Maven | No Comments »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>
Leave a Reply