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

https://bitbucket.org/mmeinhold/amps · XML · 47 lines · 47 code · 0 blank · 0 comment · 0 complexity · ae195a474fd41dea7830f71234fa5d6e 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. <plugin>
  29. <artifactId>maven-dependency-plugin</artifactId>
  30. <executions>
  31. <execution>
  32. <id>copy-storage-plugin</id>
  33. <phase>process-resources</phase>
  34. <goals>
  35. <goal>copy-dependencies</goal>
  36. </goals>
  37. <configuration>
  38. <outputDirectory>${project.build.outputDirectory}</outputDirectory>
  39. <includeArtifactIds>plugin-license-storage-plugin</includeArtifactIds>
  40. <stripVersion>true</stripVersion>
  41. </configuration>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>