Skip to content

Instantly share code, notes, and snippets.

@donchan922
Created August 19, 2018 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donchan922/85f3712f390f021ff4edd222bb6a3653 to your computer and use it in GitHub Desktop.
Save donchan922/85f3712f390f021ff4edd222bb6a3653 to your computer and use it in GitHub Desktop.
MavenでJDKのバージョンを指定する方法-その2
<project>
[...]
<build>
[...]
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
[...]
</build>
[...]
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment