pom.xml 4.0 KB
Newer Older
T
terrymanu 已提交
1 2 3 4 5
<?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">
    <parent>
T
terrymanu 已提交
6 7
        <groupId>io.shardingsphere</groupId>
        <artifactId>sharding-sphere</artifactId>
T
terrymanu 已提交
8
        <version>3.0.0.M3-SNAPSHOT</version>
T
terrymanu 已提交
9 10
    </parent>
    <modelVersion>4.0.0</modelVersion>
T
tristaZero 已提交
11 12
    <artifactId>sharding-orchestration</artifactId>
    <packaging>pom</packaging>
T
terrymanu 已提交
13
    <name>${project.artifactId}</name>
T
tristaZero 已提交
14 15
    <modules>
        <module>sharding-orchestration-core</module>
T
tristaZero 已提交
16
        <module>sharding-orchestration-reg</module>
T
tristaZero 已提交
17 18
        <module>sharding-jdbc-orchestration</module>
        <module>sharding-jdbc-orchestration-spring</module>
T
tristaZero 已提交
19 20
    </modules>

T
terrymanu 已提交
21
    <properties>
T
terrymanu 已提交
22
        <sharding-sphere.version>3.0.0.M3-SNAPSHOT</sharding-sphere.version>
T
terrymanu 已提交
23 24 25 26
    </properties>
    
    <dependencies>
        <dependency>
T
terrymanu 已提交
27
            <groupId>io.shardingsphere</groupId>
28
            <artifactId>sharding-jdbc</artifactId>
29
            <version>${sharding-sphere.version}</version>
T
terrymanu 已提交
30
        </dependency>
T
tristaZero 已提交
31 32 33 34 35
        <dependency>
            <groupId>io.shardingsphere</groupId>
            <artifactId>sharding-core</artifactId>
            <version>${sharding-sphere.version}</version>
        </dependency>
T
tristaZero 已提交
36 37 38 39 40
        <dependency>
            <groupId>io.shardingsphere</groupId>
            <artifactId>sharding-sql-test</artifactId>
            <version>${sharding-sphere.version}</version>
        </dependency>
T
terrymanu 已提交
41 42 43 44 45 46 47 48 49 50 51 52
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
        </dependency>
T
terrymanu 已提交
53 54 55 56 57 58 59 60 61 62 63 64
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-framework</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-recipes</artifactId>
        </dependency>
J
junxiong 已提交
65 66 67 68 69 70 71 72 73 74 75 76
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-netty</artifactId>
        </dependency>
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-protobuf</artifactId>
        </dependency>
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-stub</artifactId>
        </dependency>
J
junxiong 已提交
77 78 79 80
        <dependency>
            <groupId>com.github.rholder</groupId>
            <artifactId>guava-retrying</artifactId>
        </dependency>
81

T
terrymanu 已提交
82 83 84 85
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
86 87 88 89 90 91 92 93
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
T
terrymanu 已提交
94
        <dependency>
T
terrymanu 已提交
95 96
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-dbcp2</artifactId>
T
terrymanu 已提交
97 98 99 100 101
        </dependency>
        <dependency>
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
        </dependency>
T
terrymanu 已提交
102 103 104 105
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-test</artifactId>
        </dependency>
T
terrymanu 已提交
106 107 108 109
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
110 111 112 113
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
        </dependency>
T
terrymanu 已提交
114 115
    </dependencies>
</project>
T
tristaZero 已提交
116