Nur zum testen!!
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.

87 lines
2.7 KiB

2 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>Arcade64</groupId>
  5. <artifactId>Arcade64</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>Arcade64</name>
  8. <!-- FIXME change it to the project's website -->
  9. <url>http://www.example.com</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.junit.jupiter</groupId>
  18. <artifactId>junit-jupiter-api</artifactId>
  19. <version>5.8.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.junit.jupiter</groupId>
  24. <artifactId>junit-jupiter-engine</artifactId>
  25. <version>5.7.2</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.11</version>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <pluginManagement>
  37. <!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  38. <plugins>
  39. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  40. <plugin>
  41. <artifactId>maven-clean-plugin</artifactId>
  42. <version>3.1.0</version>
  43. </plugin>
  44. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  45. <plugin>
  46. <artifactId>maven-resources-plugin</artifactId>
  47. <version>3.0.2</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.8.0</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-surefire-plugin</artifactId>
  55. <version>2.22.1</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-jar-plugin</artifactId>
  59. <version>3.0.2</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-install-plugin</artifactId>
  63. <version>2.5.2</version>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-deploy-plugin</artifactId>
  67. <version>2.8.2</version>
  68. </plugin>
  69. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  70. <plugin>
  71. <artifactId>maven-site-plugin</artifactId>
  72. <version>3.7.1</version>
  73. </plugin>
  74. <plugin>
  75. <artifactId>maven-project-info-reports-plugin</artifactId>
  76. <version>3.0.0</version>
  77. </plugin>
  78. </plugins>
  79. </pluginManagement>
  80. </build>
  81. </project>