pom.xml 1.4 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>
T
terrymanu 已提交
7 8
        <groupId>io.shardingsphere</groupId>
        <artifactId>sharding-sphere</artifactId>
T
terrymanu 已提交
9
        <version>3.0.1-SNAPSHOT</version>
T
terrymanu 已提交
10 11
    </parent>
    <artifactId>sharding-core</artifactId>
T
terrymanu 已提交
12
    <name>${project.artifactId}</name>
13
    
T
terrymanu 已提交
14 15 16 17 18 19 20 21 22 23
    <dependencies>
        <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy</artifactId>
            <classifier>indy</classifier>
        </dependency>
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
        </dependency>
24
        
25
        <dependency>
T
terrymanu 已提交
26
            <groupId>io.shardingsphere</groupId>
27 28 29 30
            <artifactId>sharding-sql-test</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
31
        
T
terrymanu 已提交
32 33 34 35 36 37 38 39 40 41
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java7</artifactId>
        </dependency>
    </dependencies>
</project>