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.

50 lines
1.6 KiB

  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-unit-with-dependencied</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. <dependency>
  26. <groupId>org.mockito</groupId>
  27. <artifactId>mockito-core</artifactId>
  28. <version>3.6.0</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mockito</groupId>
  33. <artifactId>mockito-junit-jupiter</artifactId>
  34. <version>3.6.0</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <pluginManagement>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-surefire-plugin</artifactId>
  44. <!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
  45. <version>2.22.2</version>
  46. </plugin>
  47. </plugins>
  48. </pluginManagement>
  49. </build>
  50. </project>