diff options
author | Chris Ward <chris@chrisgward.com> | 2013-12-29 03:04:36 +1100 |
---|---|---|
committer | Chris Ward <chris@chrisgward.com> | 2013-12-29 03:04:36 +1100 |
commit | 58440dd5948e21fbe48f19621054707aff097d44 (patch) | |
tree | 93b4b9cf66096c16de78800172472af3042fadd4 | |
parent | 12c96e21b948738f54e0e3db453aa5259a7fe35f (diff) | |
download | Essentials-58440dd5948e21fbe48f19621054707aff097d44.tar Essentials-58440dd5948e21fbe48f19621054707aff097d44.tar.gz Essentials-58440dd5948e21fbe48f19621054707aff097d44.tar.lz Essentials-58440dd5948e21fbe48f19621054707aff097d44.tar.xz Essentials-58440dd5948e21fbe48f19621054707aff097d44.zip |
Add deploy plugin
-rw-r--r-- | pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -46,6 +46,17 @@ </repository> </repositories> + <distributionManagement> + <snapshotRepository> + <id>esssnapshot</id> + <url>http://repo.ess3.net/content/repositories/esssnapshot</url> + </snapshotRepository> + <repository> + <id>essrelease</id> + <url>http://repo.ess3.net/content/repositories/essrelease</url> + </repository> + </distributionManagement> + <modules> <module>Essentials</module> <module>EssentialsAntiBuild</module> @@ -259,6 +270,14 @@ <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.1</version> + <configuration> + <deployAtEnd>true</deployAtEnd> + </configuration> + </plugin> </plugins> <resources> <resource> |