pom.xml 1.5 KB
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>orchestration-example</artifactId>
9
        <version>4.0.0-RC1-SNAPSHOT</version>
10
    </parent>
11
    <artifactId>orchestration-raw-jdbc-example</artifactId>
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

    <dependencies>
        <dependency>
            <groupId>io.shardingsphere</groupId>
            <artifactId>repository-jdbc</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>io.shardingsphere</groupId>
            <artifactId>config-utility</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-jdbc-orchestration</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-orchestration-reg-zookeeper-curator</artifactId>
        </dependency>
        <!--<dependency>-->
34 35
            <!--<groupId>io.shardingsphere</groupId>-->
            <!--<artifactId>sharding-orchestration-reg-etcd</artifactId>-->
36 37 38
        <!--</dependency>-->
    </dependencies>
</project>