pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>edu.nju.software</groupId>
  5. <artifactId>CurrencyCalculation</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>Compute</name>
  8. <dependencies>
  9. <dependency>
  10. <groupId>junit</groupId>
  11. <artifactId>junit</artifactId>
  12. <version>4.12</version>
  13. </dependency>
  14. </dependencies>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>1.8</source>
  22. <target>1.8</target>
  23. </configuration>
  24. </plugin>
  25. <plugin>
  26. <groupId>org.codehaus.mojo</groupId>
  27. <artifactId>cobertura-maven-plugin</artifactId>
  28. <version>2.5.1</version>
  29. <configuration>
  30. <formats>
  31. <format>xml</format>
  32. </formats>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <reporting>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-report-plugin</artifactId>
  42. <version>2.21.0</version>
  43. </plugin>
  44. </plugins>
  45. </reporting>
  46. </project>