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.

missing-parent-1.1.pom 699B

1234567891011121314151617181920
  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. <parent>
  5. <groupId>com.example.test</groupId>
  6. <artifactId>missing-parent-pom</artifactId>
  7. <version>1</version>
  8. </parent>
  9. <artifactId>missing-parent</artifactId>
  10. <packaging>jar</packaging>
  11. <version>1.1</version>
  12. <name>Test Artifact :: Missing Parent POM</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>junit</groupId>
  16. <artifactId>junit</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. </dependencies>
  20. </project>