pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>Odds</groupId>
  5. <artifactId>OddsFx</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <properties>
  8. <maven.compiler.source>18</maven.compiler.source>
  9. <maven.compiler.target>18</maven.compiler.target>
  10. </properties>
  11. <repositories>
  12. <repository>
  13. <id>nordhs-repo</id>
  14. <name>Nords Repo</name>
  15. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  16. </repository>
  17. </repositories>
  18. <build>
  19. <sourceDirectory>src</sourceDirectory>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-compiler-plugin</artifactId>
  24. <version>3.12.1</version>
  25. </plugin>
  26. <plugin>
  27. <groupId>org.openjfx</groupId>
  28. <artifactId>javafx-maven-plugin</artifactId>
  29. <version>0.0.6</version>
  30. <executions>
  31. <execution>
  32. <!-- Default configuration for running -->
  33. <!-- Usage: mvn clean javafx:run -->
  34. <id>default-cli</id>
  35. <configuration>
  36. <mainClass>application.Main</mainClass>
  37. </configuration>
  38. </execution>
  39. </executions>
  40. </plugin>
  41. </plugins>
  42. <resources>
  43. <resource>
  44. <directory>src/fxml/</directory>
  45. <includes>
  46. <include>**/*.fxml</include>
  47. </includes>
  48. </resource>
  49. </resources>
  50. </build>
  51. <dependencies>
  52. <dependency>
  53. <groupId>net.sourceforge.htmlunit</groupId>
  54. <artifactId>htmlunit</artifactId>
  55. <version>2.70.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.mysql</groupId>
  59. <artifactId>mysql-connector-j</artifactId>
  60. <version>8.0.33</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.github.jbytecode</groupId>
  64. <artifactId>RCaller</artifactId>
  65. <version>3.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.google.code.gson</groupId>
  69. <artifactId>gson</artifactId>
  70. <version>2.9.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.openjfx</groupId>
  74. <artifactId>javafx-controls</artifactId>
  75. <version>22.0.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.openjfx</groupId>
  79. <artifactId>javafx-fxml</artifactId>
  80. <version>22.0.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.google.guava</groupId>
  84. <artifactId>guava</artifactId>
  85. <version>31.1-jre</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>Odds</groupId>
  89. <artifactId>Odds</artifactId>
  90. <version>0.0.1-SNAPSHOT</version>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.seleniumhq.selenium</groupId>
  95. <artifactId>selenium-java</artifactId>
  96. <version>4.19.1</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
  99. <dependency>
  100. <groupId>io.github.bonigarcia</groupId>
  101. <artifactId>webdrivermanager</artifactId>
  102. <version>5.8.0</version>
  103. </dependency>
  104. </dependencies>
  105. </project>