pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <repositories>
  38. <repository>
  39. <id>nordhs-repo</id>
  40. <name>Nords Repo</name>
  41. <url>http://nordh.xyz:9099/repository/nordhs-repo/</url>
  42. </repository>
  43. </repositories>
  44. <dependencies>
  45. <dependency>
  46. <groupId>com.google.guava</groupId>
  47. <artifactId>guava</artifactId>
  48. <version>30.0-jre</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>net.sourceforge.htmlunit</groupId>
  52. <artifactId>htmlunit</artifactId>
  53. <version>2.66.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.github.jbytecode</groupId>
  57. <artifactId>RCaller</artifactId>
  58. <version>3.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. <version>8.0.30</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. <version>2.7.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.fasterxml.jackson.core</groupId>
  72. <artifactId>jackson-databind</artifactId>
  73. <version>2.13.3</version>
  74. </dependency>
  75. </dependencies>
  76. </project>