Last active
February 27, 2018 13:11
-
-
Save icshih/0469ef2b5f2b98925ea1fe14d5a98cba to your computer and use it in GitHub Desktop.
maven build for Java 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.6.2</version> | |
<configuration> | |
<release>9</release> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to use the right plugin version (>3.6.2) to handle module-info.java properly.