pom.xml 893 字节
Newer Older
1 2 3 4 5 6 7
<?xml version="1.0" encoding="UTF-8"?>
<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>io.shardingsphere</groupId>
8
        <artifactId>sharding-jdbc-example</artifactId>
9
        <version>4.0.0-RC1-SNAPSHOT</version>
10
    </parent>
11
    <artifactId>sharding-example</artifactId>
12
    <packaging>pom</packaging>
13 14

    <modules>
15
        <module>sharding-raw-jdbc-example</module>
16 17
        <module>sharding-spring-boot-jpa-example</module>
        <module>sharding-spring-boot-mybatis-example</module>
18 19
        <module>sharding-spring-namespace-mybatis-example</module>
        <module>sharding-spring-namespace-jpa-example</module>
20 21
    </modules>
</project>