pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>ATG</groupId>
  4. <artifactId>ATG</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <sourceDirectory>src</sourceDirectory>
  8. <resources>
  9. <resource>
  10. <directory>src</directory>
  11. <excludes>
  12. <exclude>**/*.java</exclude>
  13. </excludes>
  14. </resource>
  15. </resources>
  16. <plugins>
  17. <plugin>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.8.1</version>
  20. <configuration>
  21. <release>11</release>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.google.guava</groupId>
  29. <artifactId>guava</artifactId>
  30. <version>30.0-jre</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.sourceforge.htmlunit</groupId>
  34. <artifactId>htmlunit</artifactId>
  35. <version>2.46.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <version>8.0.28</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-csv</artifactId>
  45. <version>1.9.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.google.code.gson</groupId>
  49. <artifactId>gson</artifactId>
  50. <version>2.8.6</version>
  51. </dependency>
  52. </dependencies>
  53. </project>