Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:22
Show Gist options
  • Save ezhov-da/611d443a06bb33dc560fbf19ff08a0e8 to your computer and use it in GitHub Desktop.
Save ezhov-da/611d443a06bb33dc560fbf19ff08a0e8 to your computer and use it in GitHub Desktop.
java maven build source version
https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment