pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <version>0.0.1-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.google.guava</groupId>
  27. <artifactId>guava</artifactId>
  28. <version>30.0-jre</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>net.sourceforge.htmlunit</groupId>
  32. <artifactId>htmlunit</artifactId>
  33. <version>2.50.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.jbytecode</groupId>
  37. <artifactId>RCaller</artifactId>
  38. <version>3.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.google.code.gson</groupId>
  42. <artifactId>gson</artifactId>
  43. <version>2.9.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.openjfx</groupId>
  47. <artifactId>javafx-controls</artifactId>
  48. <version>19-ea+8</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.openjfx</groupId>
  52. <artifactId>javafx-fxml</artifactId>
  53. <version>19-ea+8</version>
  54. </dependency>
  55. </dependencies>
  56. </project>