Skip to content

Instantly share code, notes, and snippets.

@michaelajr
Last active May 25, 2018 19:59
Show Gist options
  • Save michaelajr/a9553756ba031daf139286d97ea62545 to your computer and use it in GitHub Desktop.
Save michaelajr/a9553756ba031daf139286d97ea62545 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
<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