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.

24 lines
959 B

4 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>de.edu.hsfulda.ciip</groupId>
  4. <artifactId>build-with-jenkins</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <properties>
  7. <maven.compiler.target>11</maven.compiler.target>
  8. <maven.compiler.source>11</maven.compiler.source>
  9. </properties>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.junit.jupiter</groupId>
  13. <artifactId>junit-jupiter-engine</artifactId>
  14. <version>5.5.2</version>
  15. <scope>test</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.junit.platform</groupId>
  19. <artifactId>junit-platform-runner</artifactId>
  20. <version>1.5.2</version>
  21. <scope>test</scope>
  22. </dependency>
  23. </dependencies>
  24. </project>