/maven-amps-plugin/src/it/copyBundledDependencies/pom.xml

https://bitbucket.org/mmeinhold/amps · XML · 51 lines · 48 code · 3 blank · 0 comment · 0 complexity · a43b7309aff5072bbd89e115415f764f MD5 · raw file

  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.atlassian.amps.it</groupId>
  4. <artifactId>maven-amps-plugin-copy-bundled-dependencies-test</artifactId>
  5. <version>testing</version>
  6. <name>TestCopyBundledDependencies</name>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <groupId>com.atlassian.maven.plugins</groupId>
  11. <artifactId>maven-${shitty.product}-plugin</artifactId>
  12. <version>testing</version>
  13. </plugin>
  14. </plugins>
  15. </build>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.atlassian.pom</groupId>
  19. <artifactId>atlassian-base-pom</artifactId>
  20. <version>26</version>
  21. <type>pom</type>
  22. </dependency>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.10</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>servlet-api</artifactId>
  32. <version>2.4</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-io</groupId>
  37. <artifactId>commons-io</artifactId>
  38. <version>1.4</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-logging</groupId>
  43. <artifactId>commons-logging</artifactId>
  44. <version>1.1.1</version>
  45. <scope>runtime</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>