/plugin-module-codegen-engine/src/test/resources/test-pom.xml

https://bitbucket.org/mmeinhold/amps · XML · 30 lines · 30 code · 0 blank · 0 comment · 0 complexity · 806cc601ea7bdc4c19ea5250e8944b71 MD5 · raw file

  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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.atlassian.plugins</groupId>
  4. <artifactId>amps-test-pom</artifactId>
  5. <version>1.0</version>
  6. <packaging>atlassian-plugin</packaging>
  7. <name>AMPS Test POM</name>
  8. <dependencies>
  9. <dependency>
  10. <groupId>com.atlassian.plugins</groupId>
  11. <artifactId>test-artifact-1</artifactId>
  12. <version>1.0</version>
  13. <scope>provided</scope>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.atlassian.plugins</groupId>
  17. <artifactId>test-artifact-2</artifactId>
  18. <version>1.1</version>
  19. <scope>provided</scope>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>com.atlassian.maven.plugins</groupId>
  26. <artifactId>maven-amps-plugin</artifactId>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>