pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.geek.szbay</groupId>
  5. <artifactId>code-tool</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <repositories>
  8. <repository>
  9. <id>aliyun-nexus</id>
  10. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  11. </repository>
  12. </repositories>
  13. <dependencies>
  14. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  15. <dependency>
  16. <groupId>mysql</groupId>
  17. <artifactId>mysql-connector-java</artifactId>
  18. <version>6.0.6</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-io</groupId>
  22. <artifactId>commons-io</artifactId>
  23. <version>2.6</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>junit</groupId>
  27. <artifactId>junit</artifactId>
  28. <version>4.11</version>
  29. <optional>true</optional>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. </project>