You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.3 KiB

4 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>de.edu.hsfulda.ciip</groupId>
  6. <artifactId>tdd-pure-function</artifactId>
  7. <version>0.1.0-SNAPSHOT</version>
  8. <properties>
  9. <maven.compiler.target>11</maven.compiler.target>
  10. <maven.compiler.source>11</maven.compiler.source>
  11. </properties>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.junit.jupiter</groupId>
  15. <artifactId>junit-jupiter-engine</artifactId>
  16. <version>5.7.0</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.junit.platform</groupId>
  21. <artifactId>junit-platform-runner</artifactId>
  22. <version>1.5.2</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.junit.jupiter</groupId>
  27. <artifactId>junit-jupiter-params</artifactId>
  28. <version>5.7.0</version>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <pluginManagement>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-surefire-plugin</artifactId>
  38. <!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
  39. <version>2.22.2</version>
  40. </plugin>
  41. </plugins>
  42. </pluginManagement>
  43. </build>
  44. </project>