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.

93 lines
3.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" 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.hs-fulda</groupId>
  6. <artifactId>TIMS</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>TIMS</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <junit.jupiter.version>5.8.0</junit.jupiter.version>
  16. <junit.platform.version>1.8.1</junit.platform.version>
  17. <assertj.version>3.21.0</assertj.version>
  18. <junit.version>4.12</junit.version>
  19. <junit-vintage-engine>4.12.1</junit-vintage-engine>
  20. <mockito.core.version>4.1.0</mockito.core.version>
  21. <mockito.junit.jupiter.version>4.1.0</mockito.junit.jupiter.version>
  22. <junit.platform.surefire.provider.version>1.0.1</junit.platform.surefire.provider.version>
  23. <maven.surefire.plugin.verison>2.19.1</maven.surefire.plugin.verison>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>${junit.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.junit.jupiter</groupId>
  34. <artifactId>junit-jupiter-api</artifactId>
  35. <version>${junit.jupiter.version}</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.junit.vintage</groupId>
  40. <artifactId>junit-vintage-engine</artifactId>
  41. <version>${junit.jupiter.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.junit.jupiter</groupId>
  45. <artifactId>junit-jupiter-params</artifactId>
  46. <version>${junit.jupiter.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.assertj</groupId>
  51. <artifactId>assertj-core</artifactId>
  52. <version>${assertj.version}</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mockito</groupId>
  57. <artifactId>mockito-core</artifactId>
  58. <version>${mockito.core.version}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mockito</groupId>
  63. <artifactId>mockito-junit-jupiter</artifactId>
  64. <version>${mockito.junit.jupiter.version}</version>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-surefire-plugin</artifactId>
  73. <version>${maven.surefire.plugin.verison}</version>
  74. <dependencies>
  75. <dependency>
  76. <groupId>org.junit.platform</groupId>
  77. <artifactId>junit-platform-surefire-provider</artifactId>
  78. <version>${junit.platform.surefire.provider.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.junit.vintage</groupId>
  82. <artifactId>junit-vintage-engine</artifactId>
  83. <version>${junit-vintage-engine}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.junit.jupiter</groupId>
  87. <artifactId>junit-jupiter-engine</artifactId>
  88. <version>${junit.jupiter.version}</version>
  89. </dependency>
  90. </dependencies>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>