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.

75 lines
2.4 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.TheBestPMUWGroup</groupId>
  6. <artifactId>Pacmayham</artifactId>
  7. <version>0.1-PREALPHA</version>
  8. <packaging>jar</packaging>
  9. <properties>
  10. <maven.compiler.target>11</maven.compiler.target>
  11. <maven.compiler.source>11</maven.compiler.source>
  12. <junit.jupiter.version>[5.8.1,6)</junit.jupiter.version>
  13. <junit.platform.version>[1.8.1,2)</junit.platform.version>
  14. <mockito.version>4.1.0</mockito.version>
  15. <assertj.version>[3.20.2,4)</assertj.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.junit.jupiter</groupId>
  20. <artifactId>junit-jupiter-api</artifactId>
  21. <version>${junit.jupiter.version}</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.junit.jupiter</groupId>
  26. <artifactId>junit-jupiter-params</artifactId>
  27. <version>${junit.jupiter.version}</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.assertj</groupId>
  32. <artifactId>assertj-core</artifactId>
  33. <version>${assertj.version}</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mockito</groupId>
  38. <artifactId>mockito-junit-jupiter</artifactId>
  39. <version>${mockito.version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-surefire-plugin</artifactId>
  48. <version>3.0.0-M5</version>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.junit.jupiter</groupId>
  52. <artifactId>junit-jupiter-engine</artifactId>
  53. <version>${junit.jupiter.version}</version>
  54. </dependency>
  55. </dependencies>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-jar-plugin</artifactId>
  60. <version>3.1.0</version>
  61. <configuration>
  62. <archive>
  63. <manifest>
  64. <addClasspath>true</addClasspath>
  65. <classpathPrefix>lib/</classpathPrefix>
  66. <mainClass>pacmanGame.Program</mainClass>
  67. </manifest>
  68. </archive>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>