pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.15</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.chinaitop</groupId>
  12. <artifactId>depot-database-document</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>depot-database-document</name>
  15. <description>生成数据库文档</description>
  16. <properties>
  17. <skipTests>true</skipTests>
  18. <java.version>1.8</java.version>
  19. <spring-cloud.version>2021.0.8</spring-cloud.version>
  20. </properties>
  21. <dependencies>
  22. <!-- Screw Core -->
  23. <dependency>
  24. <groupId>cn.smallbun.screw</groupId>
  25. <artifactId>screw-core</artifactId>
  26. <version>1.0.2</version>
  27. </dependency>
  28. <!-- HikariCP -->
  29. <dependency>
  30. <groupId>com.zaxxer</groupId>
  31. <artifactId>HikariCP</artifactId>
  32. <version>3.4.5</version>
  33. </dependency>
  34. <!-- Mysql Driver -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>8.0.20</version>
  39. </dependency>
  40. </dependencies>
  41. </project>