Skip to content

Instantly share code, notes, and snippets.

@steppat
Created May 25, 2013 18:34
Show Gist options
  • Save steppat/5650232 to your computer and use it in GitHub Desktop.
Save steppat/5650232 to your computer and use it in GitHub Desktop.
verifica anta mvn -version (java home)
---------------------------------------
Maven 3
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
------------------
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment