pom.xml 2.5 KB
Newer Older
T
terrymanu 已提交
1 2 3 4 5 6
<?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>
7
        <groupId>org.apache.shardingsphere</groupId>
T
terrymanu 已提交
8
        <artifactId>sharding-sphere</artifactId>
T
terrymanu 已提交
9
        <version>4.0.0.M1-SNAPSHOT</version>
T
terrymanu 已提交
10 11
    </parent>
    <artifactId>sharding-core</artifactId>
T
terrymanu 已提交
12
    <name>${project.artifactId}</name>
13
    
T
terrymanu 已提交
14
    <dependencies>
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-parser-mysql</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-parser-postgresql</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-parser-oracle</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-parser-sqlserver</artifactId>
            <version>${project.version}</version>
        </dependency>
        
T
terrymanu 已提交
36 37 38 39 40 41 42 43 44
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy</artifactId>
            <classifier>indy</classifier>
        </dependency>
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
        </dependency>
45
        
46
        <dependency>
47
            <groupId>org.apache.shardingsphere</groupId>
48 49 50 51
            <artifactId>sharding-sql-test</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
52
        
T
terrymanu 已提交
53 54 55 56 57 58 59 60
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java7</artifactId>
        </dependency>
ShardingSphere's avatar
ShardingSphere 已提交
61 62 63 64
        <dependency>
            <groupId>org.antlr</groupId>
            <artifactId>antlr4</artifactId>
        </dependency>
T
tristaZero 已提交
65 66 67 68 69
        
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
        </dependency>
T
terrymanu 已提交
70 71
    </dependencies>
</project>