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.

49 lines
1.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 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>Hellsgamers</groupId>
  7. <artifactId>hellsgamers</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>17</maven.compiler.source>
  11. <maven.compiler.target>17</maven.compiler.target>
  12. </properties>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-surefire-plugin</artifactId>
  18. <version>3.0.0-M5</version>
  19. <configuration>
  20. <skipTests>false</skipTests>
  21. <includes>
  22. <include>test_*</include>
  23. </includes>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. </build>
  28. <dependencies>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.13.2</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.junit.jupiter</groupId>
  37. <artifactId>junit-jupiter</artifactId>
  38. <version>5.8.1</version>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42. </project>