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.

38 lines
1.2 KiB

3 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.5.2</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. </dependencies>
  26. <build>
  27. <pluginManagement>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-surefire-plugin</artifactId>
  32. <!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
  33. <version>2.22.2</version>
  34. </plugin>
  35. </plugins>
  36. </pluginManagement>
  37. </build>
  38. </project>