pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>Odds</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <sourceDirectory>src</sourceDirectory>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.8.1</version>
  12. <configuration>
  13. <source>18</source>
  14. <target>18</target>
  15. </configuration>
  16. </plugin>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-jar-plugin</artifactId>
  20. <version>3.3.0</version>
  21. <configuration>
  22. <archive>
  23. <manifest>
  24. <mainClass>main.Main</mainClass>
  25. </manifest>
  26. </archive>
  27. </configuration>
  28. </plugin>
  29. <!-- <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. <executions>
  33. <execution>
  34. <goals>
  35. <goal>repackage</goal>
  36. </goals>
  37. <configuration>
  38. <classifier>spring-boot</classifier>
  39. <mainClass>
  40. Main
  41. </mainClass>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. -->
  47. </plugins>
  48. </build>
  49. <repositories>
  50. <repository>
  51. <id>nordhs-repo</id>
  52. <name>Nords Repo</name>
  53. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  54. </repository>
  55. </repositories>
  56. <dependencies>
  57. <dependency>
  58. <groupId>net.sourceforge.htmlunit</groupId>
  59. <artifactId>htmlunit</artifactId>
  60. <version>2.66.0</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>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <version>8.0.30</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. <version>2.7.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.fasterxml.jackson.core</groupId>
  79. <artifactId>jackson-databind</artifactId>
  80. <version>2.13.3</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
  83. <dependency>
  84. <groupId>org.seleniumhq.selenium</groupId>
  85. <artifactId>selenium-java</artifactId>
  86. <version>4.6.0</version>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  89. <dependency>
  90. <groupId>com.google.guava</groupId>
  91. <artifactId>guava</artifactId>
  92. <version>31.1-jre</version>
  93. </dependency>
  94. </dependencies>
  95. </project>