pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.sf</groupId>
  7. <artifactId>VIP33</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.google.code.gson</groupId>
  12. <artifactId>gson</artifactId>
  13. <version>2.9.1</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <version>4.13.2</version>
  19. <scope>compile</scope>
  20. </dependency>
  21. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  22. <dependency>
  23. <groupId>commons-io</groupId>
  24. <artifactId>commons-io</artifactId>
  25. <version>2.5</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>mysql</groupId>
  29. <artifactId>mysql-connector-java</artifactId>
  30. <version>5.1.47</version>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid</artifactId>
  36. <version>1.2.6</version>
  37. </dependency>
  38. <!-- https://mvnrepository.com/artifact/commons-dbutils/commons-dbutils -->
  39. <dependency>
  40. <groupId>commons-dbutils</groupId>
  41. <artifactId>commons-dbutils</artifactId>
  42. <version>1.7</version>
  43. </dependency>
  44. </dependencies>
  45. <properties>
  46. <maven.compiler.source>8</maven.compiler.source>
  47. <maven.compiler.target>8</maven.compiler.target>
  48. </properties>
  49. </project>