pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>Odds</groupId>
  4. <artifactId>OddsFx</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <properties>
  7. <maven.compiler.source>18</maven.compiler.source>
  8. <maven.compiler.target>18</maven.compiler.target>
  9. </properties>
  10. <repositories>
  11. <repository>
  12. <id>nordhs-repo</id>
  13. <name>Nords Repo</name>
  14. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  15. </repository>
  16. </repositories>
  17. <build>
  18. <sourceDirectory>src</sourceDirectory>
  19. <plugins>
  20. <plugin>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.10.1</version>
  23. </plugin>
  24. <plugin>
  25. <groupId>org.openjfx</groupId>
  26. <artifactId>javafx-maven-plugin</artifactId>
  27. <version>0.0.6</version>
  28. <executions>
  29. <execution>
  30. <!-- Default configuration for running -->
  31. <!-- Usage: mvn clean javafx:run -->
  32. <id>default-cli</id>
  33. <configuration>
  34. <mainClass>application.Main</mainClass>
  35. </configuration>
  36. </execution>
  37. </executions>
  38. </plugin>
  39. </plugins>
  40. <resources>
  41. <resource>
  42. <directory>src/fxml/</directory>
  43. <includes>
  44. <include>**/*.fxml</include>
  45. </includes>
  46. </resource>
  47. </resources>
  48. </build>
  49. <dependencies>
  50. <dependency>
  51. <groupId>Odds</groupId>
  52. <artifactId>Odds</artifactId>
  53. <version>Odds-0.0.1-SNAPSHOT</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.guava</groupId>
  57. <artifactId>guava</artifactId>
  58. <version>30.0-jre</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>net.sourceforge.htmlunit</groupId>
  62. <artifactId>htmlunit</artifactId>
  63. <version>2.50.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.github.jbytecode</groupId>
  67. <artifactId>RCaller</artifactId>
  68. <version>3.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.code.gson</groupId>
  72. <artifactId>gson</artifactId>
  73. <version>2.9.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.openjfx</groupId>
  77. <artifactId>javafx-controls</artifactId>
  78. <version>19-ea+8</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.openjfx</groupId>
  82. <artifactId>javafx-fxml</artifactId>
  83. <version>19-ea+8</version>
  84. </dependency>
  85. </dependencies>
  86. </project>