pom.xml 3.5 KB
Newer Older
T
terrymanu 已提交
1 2 3 4
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         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>
T
terrymanu 已提交
5 6
        <groupId>io.shardingsphere</groupId>
        <artifactId>sharding-sphere</artifactId>
T
terrymanu 已提交
7
        <version>3.0.0.M3-SNAPSHOT</version>
T
terrymanu 已提交
8
    </parent>
9
    <artifactId>sharding-jdbc</artifactId>
T
terrymanu 已提交
10 11
    <name>${project.artifactId}</name>
    <dependencies>
12
        <dependency>
T
terrymanu 已提交
13
            <groupId>io.shardingsphere</groupId>
14 15 16
            <artifactId>sharding-core</artifactId>
            <version>${project.version}</version>
        </dependency>
T
tristaZero 已提交
17 18 19 20 21
        <dependency>
            <groupId>io.shardingsphere</groupId>
            <artifactId>sharding-jdbc-orchestration</artifactId>
            <version>${project.version}</version>
        </dependency>
22 23 24 25 26
        <dependency>
            <groupId>io.shardingsphere</groupId>
            <artifactId>sharding-transaction</artifactId>
            <version>${project.version}</version>
        </dependency>
27
        
T
terrymanu 已提交
28 29 30 31 32 33 34 35
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
T
terrymanu 已提交
36 37 38 39
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
T
terrymanu 已提交
40 41 42 43 44
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy</artifactId>
            <classifier>indy</classifier>
        </dependency>
T
terrymanu 已提交
45 46 47 48
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
        </dependency>
T
terrymanu 已提交
49
        
50
        <dependency>
T
terrymanu 已提交
51
            <groupId>io.shardingsphere</groupId>
52 53 54 55
            <artifactId>sharding-sql-test</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
T
terrymanu 已提交
56 57 58 59 60 61 62 63 64 65 66 67
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
T
terrymanu 已提交
68 69 70 71
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
72
        <dependency>
73
            <groupId>org.postgresql</groupId>
74 75
            <artifactId>postgresql</artifactId>
        </dependency>
76 77 78 79
        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>mssql-jdbc</artifactId>
        </dependency>
T
terrymanu 已提交
80 81 82 83
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
84
        <dependency>
T
terrymanu 已提交
85 86
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-dbcp2</artifactId>
87 88 89 90 91
        </dependency>
        <dependency>
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
        </dependency>
T
terrymanu 已提交
92 93 94 95
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java7</artifactId>
        </dependency>
T
terrymanu 已提交
96 97 98 99 100
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
        </dependency>
    </dependencies>
T
terrymanu 已提交
101
</project>