You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test-artifact-parent-1.pom 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.example.test</groupId>
  5. <artifactId>test-artifact-parent</artifactId>
  6. <version>1</version>
  7. <packaging>pom</packaging>
  8. <name>Test Artifact :: Parent</name>
  9. <description>This is the uber parent POM.</description>
  10. <url>http://test.com</url>
  11. <scm>
  12. <connection>scm:svn:http://svn.example.com/repos/test-artifact-parent/trunk</connection>
  13. <developerConnection>scm:svn:https://svn.example.com/repos/test-artifact-parent/trunk</developerConnection>
  14. <url>http://svn.example.com/repos/test-artifact-parent/trunk</url>
  15. </scm>
  16. <distributionManagement>
  17. <repository>
  18. <id>releases</id>
  19. <name>Releases Repository</name>
  20. <url>http://repo.test.com/archiva/repository/releases</url>
  21. </repository>
  22. <snapshotRepository>
  23. <id>snapshots</id>
  24. <name>Snapshots Repository</name>
  25. <url>http://repo.test.com/archiva/repository/snapshots</url>
  26. </snapshotRepository>
  27. </distributionManagement>
  28. <developers>
  29. <developer>
  30. <id>jsmith</id>
  31. <name>John Smith</name>
  32. <email>jsmith@mail.com</email>
  33. </developer>
  34. </developers>
  35. <licenses>
  36. <license>
  37. <name>The Apache Software License, Version 2.0</name>
  38. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  39. </license>
  40. </licenses>
  41. </project>