pom.xml 3.3 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</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 17
            <artifactId>sharding-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        
T
terrymanu 已提交
18 19 20 21 22 23 24 25
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
T
terrymanu 已提交
26 27 28 29
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
T
terrymanu 已提交
30 31 32 33 34
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy</artifactId>
            <classifier>indy</classifier>
        </dependency>
T
terrymanu 已提交
35 36 37 38
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
        </dependency>
T
terrymanu 已提交
39
        
40
        <dependency>
T
terrymanu 已提交
41
            <groupId>io.shardingsphere</groupId>
42 43 44 45
            <artifactId>sharding-sql-test</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
T
terrymanu 已提交
46 47 48 49 50 51 52 53 54 55 56 57
        <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 已提交
58 59 60 61
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
62
        <dependency>
63
            <groupId>org.postgresql</groupId>
64 65
            <artifactId>postgresql</artifactId>
        </dependency>
66 67 68 69
        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>mssql-jdbc</artifactId>
        </dependency>
T
terrymanu 已提交
70 71 72 73
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
74
        <dependency>
T
terrymanu 已提交
75 76
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-dbcp2</artifactId>
77 78 79 80 81
        </dependency>
        <dependency>
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
        </dependency>
T
terrymanu 已提交
82 83 84 85
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java7</artifactId>
        </dependency>
T
terrymanu 已提交
86 87 88 89
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
        </dependency>
T
tristaZero 已提交
90 91 92 93 94
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java6</artifactId>
            <version>2.3.13</version>
        </dependency>
T
terrymanu 已提交
95
    </dependencies>
T
terrymanu 已提交
96
</project>