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.

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