pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <parent>
  5. <groupId>com.zlt</groupId>
  6. <artifactId>zlt-demo</artifactId>
  7. <version>2.7.0</version>
  8. </parent>
  9. <artifactId>sharding-jdbc-demo</artifactId>
  10. <description>sharding-jdbc分库分表demo</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.zlt</groupId>
  14. <artifactId>zlt-common-spring-boot-starter</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.zlt</groupId>
  18. <artifactId>zlt-db-spring-boot-starter</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.shardingsphere</groupId>
  22. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-maven-plugin</artifactId>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>