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.

53 lines
1.9 KiB

3 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>CliArcadeService</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>15</maven.compiler.source>
  11. <maven.compiler.target>15</maven.compiler.target>
  12. <junit.version>5.8.2</junit.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.junit.jupiter</groupId>
  17. <artifactId>junit-jupiter-api</artifactId>
  18. <version>${junit.version}</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.junit.jupiter</groupId>
  23. <artifactId>junit-jupiter-engine</artifactId>
  24. <version>${junit.version}</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mockito</groupId>
  29. <artifactId>mockito-core</artifactId>
  30. <version>2.21.0</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mockito</groupId>
  35. <artifactId>mockito-junit-jupiter</artifactId>
  36. <version>2.23.0</version>
  37. <scope>test</scope>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <pluginManagement>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-surefire-plugin</artifactId>
  46. <!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
  47. <version>2.22.2</version>
  48. </plugin>
  49. </plugins>
  50. </pluginManagement>
  51. </build>
  52. </project>