Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
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.

119 lines
4.0 KiB

  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"
  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>com.ugsbo</groupId>
  6. <artifactId>UGSBO</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>UGSBO</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.11</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hamcrest</groupId>
  24. <artifactId>hamcrest-junit</artifactId>
  25. <version>2.0.0.0</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
  29. <dependency>
  30. <groupId>org.mockito</groupId>
  31. <artifactId>mockito-core</artifactId>
  32. <version>2.10.0</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.openjfx</groupId>
  37. <artifactId>javafx-controls</artifactId>
  38. <version>12.0.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.openjfx</groupId>
  42. <artifactId>javafx-fxml</artifactId>
  43. <version>12.0.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.code.gson</groupId>
  47. <artifactId>gson</artifactId>
  48. <version>2.8.5</version>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>3.8.0</version>
  58. <configuration>
  59. <release>11</release>
  60. <source>11</source>
  61. <target>11</target>
  62. </configuration>
  63. </plugin>
  64. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  65. <plugin>
  66. <artifactId>maven-clean-plugin</artifactId>
  67. <version>3.1.0</version>
  68. </plugin>
  69. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  70. <plugin>
  71. <artifactId>maven-resources-plugin</artifactId>
  72. <version>3.0.2</version>
  73. </plugin>
  74. <plugin>
  75. <artifactId>maven-surefire-plugin</artifactId>
  76. <version>2.22.1</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-jar-plugin</artifactId>
  80. <version>3.0.2</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-install-plugin</artifactId>
  84. <version>2.5.2</version>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-deploy-plugin</artifactId>
  88. <version>2.8.2</version>
  89. </plugin>
  90. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  91. <plugin>
  92. <artifactId>maven-site-plugin</artifactId>
  93. <version>3.7.1</version>
  94. </plugin>
  95. <plugin>
  96. <artifactId>maven-project-info-reports-plugin</artifactId>
  97. <version>3.0.0</version>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.openjfx</groupId>
  101. <artifactId>javafx-maven-plugin</artifactId>
  102. <version>0.0.2</version>
  103. <configuration>
  104. <release>12</release>
  105. <jlinkImageName>UGSBO</jlinkImageName>
  106. <launcher>launcher</launcher>
  107. <mainClass>UGSBO/com.ugsbo.gui.StartApplication</mainClass>
  108. </configuration>
  109. </plugin>
  110. </plugins>
  111. </pluginManagement>
  112. </build>
  113. </project>