pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.springframework.boot</groupId>
  19. <artifactId>spring-boot-maven-plugin</artifactId>
  20. <executions>
  21. <execution>
  22. <goals>
  23. <goal>repackage</goal>
  24. </goals>
  25. <configuration>
  26. <classifier>spring-boot</classifier>
  27. <mainClass>
  28. Main
  29. </mainClass>
  30. </configuration>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. -->
  35. </plugins>
  36. </build>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>30.0-jre</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>net.sourceforge.htmlunit</groupId>
  45. <artifactId>htmlunit</artifactId>
  46. <version>2.64.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.jbytecode</groupId>
  50. <artifactId>RCaller</artifactId>
  51. <version>3.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. <version>8.0.30</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <version>2.7.1</version>
  62. </dependency>
  63. </dependencies>
  64. </project>