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

https://bitbucket.org/mmeinhold/amps · XML · 41 lines · 38 code · 3 blank · 0 comment · 0 complexity · f07dac0f2270f22fc8db0ae897ac60d4 MD5 · raw file

  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.atlassian.amps.it</groupId>
  4. <artifactId>maven-amps-plugin-unit-test</artifactId>
  5. <version>testing</version>
  6. <name>TestUnitTest</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. <plugin>
  15. <artifactId>maven-compiler-plugin</artifactId>
  16. <configuration>
  17. <source>1.5</source>
  18. <target>1.5</target>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-surefire-plugin</artifactId>
  24. <configuration>
  25. <reportsDirectory>target/shitty-it-surefire-reports</reportsDirectory>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. <dependencies>
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <version>4.10</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. </project>