pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <plugin>
  18. <groupId>org.openjfx</groupId>
  19. <artifactId>javafx-maven-plugin</artifactId>
  20. <version>0.0.6</version>
  21. <executions>
  22. <execution>
  23. <!-- Default configuration for running -->
  24. <!-- Usage: mvn clean javafx:run -->
  25. <id>default-cli</id>
  26. <configuration>
  27. <mainClass>application.Main</mainClass>
  28. </configuration>
  29. </execution>
  30. </executions>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. <dependencies>
  35. <dependency>
  36. <groupId>Odds</groupId>
  37. <artifactId>Odds</artifactId>
  38. <version>0.0.1-SNAPSHOT</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.google.guava</groupId>
  42. <artifactId>guava</artifactId>
  43. <version>30.0-jre</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>net.sourceforge.htmlunit</groupId>
  47. <artifactId>htmlunit</artifactId>
  48. <version>2.50.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.jbytecode</groupId>
  52. <artifactId>RCaller</artifactId>
  53. <version>3.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.code.gson</groupId>
  57. <artifactId>gson</artifactId>
  58. <version>2.9.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.openjfx</groupId>
  62. <artifactId>javafx-controls</artifactId>
  63. <version>19-ea+8</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.openjfx</groupId>
  67. <artifactId>javafx-fxml</artifactId>
  68. <version>19-ea+8</version>
  69. </dependency>
  70. </dependencies>
  71. </project>