Created
May 6, 2017 02:08
-
-
Save idletekz/131846e6cc3d8c7d5dc4b049b4884c9a to your computer and use it in GitHub Desktop.
This file contains 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
<project> | |
... | |
<build> | |
<!-- To define the plugin version in your parent POM --> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-deploy-plugin</artifactId> | |
<version>2.8.2</version> | |
</plugin> | |
... | |
</plugins> | |
</pluginManagement> | |
<!-- To use the plugin goals in your POM or parent POM --> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-deploy-plugin</artifactId> | |
<version>2.8.2</version> | |
</plugin> | |
... | |
</plugins> | |
</build> | |
... | |
</project> | |
http://maven.apache.org/plugins/maven-deploy-plugin/plugin-info.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment