pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <build>
  11. <sourceDirectory>src</sourceDirectory>
  12. <plugins>
  13. <plugin>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>3.10.1</version>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <dependencies>
  20. <dependency>
  21. <groupId>Odds</groupId>
  22. <artifactId>Odds</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.guava</groupId>
  26. <artifactId>guava</artifactId>
  27. <version>30.0-jre</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.sourceforge.htmlunit</groupId>
  31. <artifactId>htmlunit</artifactId>
  32. <version>2.50.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.jbytecode</groupId>
  36. <artifactId>RCaller</artifactId>
  37. <version>3.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.code.gson</groupId>
  41. <artifactId>gson</artifactId>
  42. <version>2.8.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.openjfx</groupId>
  46. <artifactId>javafx-controls</artifactId>
  47. <version>19-ea+8</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.openjfx</groupId>
  51. <artifactId>javafx-fxml</artifactId>
  52. <version>19-ea+8</version>
  53. </dependency>
  54. </dependencies>
  55. </project>