pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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">
  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>17</maven.compiler.source>
  9. <maven.compiler.target>17</maven.compiler.target>
  10. <maven.compiler.release>17</maven.compiler.release>
  11. </properties>
  12. <repositories>
  13. <repository>
  14. <id>nordhs-repo</id>
  15. <name>Nords Repo</name>
  16. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  17. </repository>
  18. </repositories>
  19. <build>
  20. <sourceDirectory>src</sourceDirectory>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-shade-plugin</artifactId>
  25. <version>3.6.0</version>
  26. <executions>
  27. <execution>
  28. <phase>package</phase>
  29. <goals>
  30. <goal>shade</goal>
  31. </goals>
  32. <configuration>
  33. <transformers>
  34. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  35. <mainClass>application.Main</mainClass>
  36. </transformer>
  37. </transformers>
  38. </configuration>
  39. </execution>
  40. </executions>
  41. </plugin>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.12.1</version>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.openjfx</groupId>
  49. <artifactId>javafx-maven-plugin</artifactId>
  50. <version>0.0.8</version>
  51. <executions>
  52. <execution>
  53. <!-- Default configuration for running -->
  54. <!-- Usage: mvn clean javafx:run -->
  55. <id>default-cli</id>
  56. <configuration>
  57. <mainClass>application.Main</mainClass>
  58. </configuration>
  59. </execution>
  60. <execution>
  61. <!-- Configuration for debugging -->
  62. <id>debug</id>
  63. <configuration>
  64. <options>
  65. <option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:8000</option>
  66. </options>
  67. <mainClass>application.Main</mainClass>
  68. </configuration>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. <resources>
  74. <resource>
  75. <directory>src/fxml/</directory>
  76. <includes>
  77. <include>**/*.fxml</include>
  78. <include>**/*.css</include>
  79. </includes>
  80. </resource>
  81. </resources>
  82. </build>
  83. <dependencies>
  84. <!-- https://mvnrepository.com/artifact/org.htmlunit/htmlunit -->
  85. <dependency>
  86. <groupId>org.htmlunit</groupId>
  87. <artifactId>htmlunit</artifactId>
  88. <version>4.5.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.github.jbytecode</groupId>
  92. <artifactId>RCaller</artifactId>
  93. <version>3.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.google.code.gson</groupId>
  97. <artifactId>gson</artifactId>
  98. <version>2.9.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.openjfx</groupId>
  102. <artifactId>javafx-controls</artifactId>
  103. <version>23.0.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.openjfx</groupId>
  107. <artifactId>javafx-fxml</artifactId>
  108. <version>23.0.1</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.google.guava</groupId>
  112. <artifactId>guava</artifactId>
  113. <version>31.1-jre</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>Odds</groupId>
  117. <artifactId>Odds</artifactId>
  118. <version>0.0.1-SNAPSHOT</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.seleniumhq.selenium</groupId>
  122. <artifactId>selenium-java</artifactId>
  123. <version>4.26.0</version>
  124. </dependency>
  125. <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
  126. <dependency>
  127. <groupId>io.github.bonigarcia</groupId>
  128. <artifactId>webdrivermanager</artifactId>
  129. <version>5.9.2</version>
  130. </dependency>
  131. <!-- <dependency>
  132. <groupId>com.mysql</groupId>
  133. <artifactId>mysql-connector-j</artifactId>
  134. <version>9.1.0</version>
  135. </dependency> -->
  136. </dependencies>
  137. </project>