Advertisement
Guest User

pom.xml

a guest
Aug 16th, 2013
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3.  
  4. <packaging>pom</packaging>
  5.  
  6. <groupId>mymaven</groupId>
  7. <artifactId>test</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9.  
  10. <properties>
  11. <project.version>1.0-SNAPSHOT</project.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven-jaxb2-plugin-version>0.8.3</maven-jaxb2-plugin-version>
  14. <maven-compiler-plugin-version>2.5.1</maven-compiler-plugin-version>
  15. <java-version>1.7</java-version>
  16. <maven-release-plugin-version>2.4.1</maven-release-plugin-version>
  17. <maven-deploy-plugin-version>2.7</maven-deploy-plugin-version>
  18. </properties>
  19.  
  20. <distributionManagement>
  21. <snapshotRepository>
  22. <id>MySnapshots</id>
  23. <name>My Snapshots</name>
  24. <url>http://localhost:8081/nexus/content/repositories/MySnapshots</url>
  25. </snapshotRepository>
  26. </distributionManagement>
  27.  
  28. ...
  29. ...
  30.  
  31. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement