Last active
May 25, 2018 19:59
-
-
Save michaelajr/a9553756ba031daf139286d97ea62545 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
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
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.7.0</version> | |
<configuration> | |
<compilerArguments> | |
<Xlint:all/> | |
</compilerArguments> | |
</configuration> | |
</plugin> | |
<!-- Other build plugins omitted --> | |
</plugins> | |
</pluginManagement> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://medium.com/eonian-technologies/maven-for-pipelining-part-1-8b850d10a7ee