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

https://bitbucket.org/mmeinhold/amps · XML · 79 lines · 74 code · 4 blank · 1 comment · 0 complexity · ca8a0e574fcf47d0c20bd77e6bedcdb6 MD5 · raw file

  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.atlassian.amps.it</groupId>
  4. <artifactId>maven-amps-plugin-run</artifactId>
  5. <packaging>atlassian-plugin</packaging>
  6. <version>testing</version>
  7. <name>TestRun</name>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <groupId>com.atlassian.maven.plugins</groupId>
  12. <artifactId>maven-${shitty.product}-plugin</artifactId>
  13. <version>testing</version>
  14. <extensions>true</extensions>
  15. <configuration>
  16. <wait>false</wait>
  17. <writePropertiesToFile>true</writePropertiesToFile>
  18. </configuration>
  19. </plugin>
  20. <!-- this is used to run some tests against the running application -->
  21. <plugin>
  22. <groupId>org.codehaus.groovy.maven</groupId>
  23. <artifactId>gmaven-plugin</artifactId>
  24. <version>1.0</version>
  25. <configuration>
  26. <source>${project.build.directory}/it/run/webappassertions.groovy</source>
  27. <classpath>
  28. <element>
  29. <groupId>org.codehaus.groovy</groupId>
  30. <artifactId>http-builder</artifactId>
  31. </element>
  32. <element>
  33. <groupId>org.apache.httpcomponents</groupId>
  34. <artifactId>httpclient</artifactId>
  35. </element>
  36. <element>
  37. <groupId>org.apache.httpcomponents</groupId>
  38. <artifactId>httpcore</artifactId>
  39. </element>
  40. <element>
  41. <groupId>net.sf.json-lib</groupId>
  42. <artifactId>json-lib</artifactId>
  43. <classifier>jdk15</classifier>
  44. </element>
  45. </classpath>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. <dependencyManagement>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.codehaus.groovy</groupId>
  54. <artifactId>http-builder</artifactId>
  55. <version>0.4.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpclient</artifactId>
  60. <version>4.0-beta2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.httpcomponents</groupId>
  64. <artifactId>httpcore</artifactId>
  65. <version>4.0-beta3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>net.sf.json-lib</groupId>
  69. <artifactId>json-lib</artifactId>
  70. <classifier>jdk15</classifier>
  71. <version>2.2.2</version>
  72. </dependency>
  73. </dependencies>
  74. </dependencyManagement>
  75. </project>