Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <project>
  2.  
  3. <build>
  4.  
  5. <plugin>
  6. <groupId>org.apache.maven.plugins</groupId>
  7. <artifactId>maven-deploy-plugin</artifactId>
  8. <version>2.8.2</version>
  9. <executions>
  10. <execution>
  11. <id>MyProjId</id>
  12. <phase>package</phase>
  13. <goals>
  14. <goal>deploy</goal>
  15. </goals>
  16. </execution>
  17. </executions>
  18. </plugin>
  19.  
  20.  
  21. </build>
  22. <distributionManagement>
  23. <repository>
  24. <id>my-repository</id>
  25. <url>http://path/to/your/repo</url>
  26. </repository>
  27. </distributionManagement>
  28.  
  29. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement