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.

108 lines
3.6 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. </dependencies>
  40. <build>
  41. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-compiler-plugin</artifactId>
  46. <version>3.8.0</version>
  47. <configuration>
  48. <release>11</release>
  49. <source>11</source>
  50. <target>11</target>
  51. </configuration>
  52. </plugin>
  53. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  54. <plugin>
  55. <artifactId>maven-clean-plugin</artifactId>
  56. <version>3.1.0</version>
  57. </plugin>
  58. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  59. <plugin>
  60. <artifactId>maven-resources-plugin</artifactId>
  61. <version>3.0.2</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-surefire-plugin</artifactId>
  65. <version>2.22.1</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-jar-plugin</artifactId>
  69. <version>3.0.2</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-install-plugin</artifactId>
  73. <version>2.5.2</version>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-deploy-plugin</artifactId>
  77. <version>2.8.2</version>
  78. </plugin>
  79. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  80. <plugin>
  81. <artifactId>maven-site-plugin</artifactId>
  82. <version>3.7.1</version>
  83. </plugin>
  84. <plugin>
  85. <artifactId>maven-project-info-reports-plugin</artifactId>
  86. <version>3.0.0</version>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.openjfx</groupId>
  90. <artifactId>javafx-maven-plugin</artifactId>
  91. <version>0.0.2</version>
  92. <configuration>
  93. <release>12</release>
  94. <jlinkImageName>UGSBO</jlinkImageName>
  95. <launcher>launcher</launcher>
  96. <mainClass>UGSBO/com.ugsbo.gui.MainApp</mainClass>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </pluginManagement>
  101. </build>
  102. </project>