Project for Continous Integration
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.

83 lines
2.9 KiB

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>org.example</groupId>
  7. <artifactId>Bordcomputer</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>11</maven.compiler.source>
  11. <maven.compiler.target>11</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.junit.jupiter</groupId>
  16. <artifactId>junit-jupiter-engine</artifactId>
  17. <version>5.8.2</version>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.mockito</groupId>
  22. <artifactId>mockito-core</artifactId>
  23. <version>4.2.0</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.junit.platform</groupId>
  28. <artifactId>junit-platform-runner</artifactId>
  29. <version>1.8.2</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.junit.vintage</groupId>
  34. <artifactId>junit-vintage-engine</artifactId>
  35. <version>5.8.2</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mockito</groupId>
  40. <artifactId>mockito-junit-jupiter</artifactId>
  41. <version>4.2.0</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.assertj</groupId>
  46. <artifactId>assertj-core</artifactId>
  47. <version>3.22.0</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.webjars.npm</groupId>
  52. <artifactId>arguments-extended</artifactId>
  53. <version>0.0.3</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.junit.jupiter</groupId>
  58. <artifactId>junit-jupiter-params</artifactId>
  59. <version>5.8.2</version>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <pluginManagement>
  65. <plugins>
  66. <plugin>
  67. <artifactId>maven-surefire-plugin</artifactId>
  68. <version>2.19.1</version>
  69. <dependencies>
  70. <dependency>
  71. <groupId>org.junit.platform</groupId>
  72. <artifactId>junit-platform-surefire-provider</artifactId>
  73. <version>1.0.1</version>
  74. </dependency>
  75. </dependencies>
  76. </plugin>
  77. </plugins>
  78. </pluginManagement>
  79. </build>
  80. </project>