1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.zlt</groupId>
- <artifactId>zlt-demo</artifactId>
- <version>2.7.0</version>
- </parent>
- <artifactId>sharding-jdbc-demo</artifactId>
- <description>sharding-jdbc分库分表demo</description>
-
- <dependencies>
- <dependency>
- <groupId>com.zlt</groupId>
- <artifactId>zlt-common-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zlt</groupId>
- <artifactId>zlt-db-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>io.shardingsphere</groupId>
- <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|