pom.xml 2.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>
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 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>
26
            <groupId>org.apache.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
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java7</artifactId>
        </dependency>
ShardingSphere's avatar
ShardingSphere 已提交
40 41 42 43
        <dependency>
            <groupId>org.antlr</groupId>
            <artifactId>antlr4</artifactId>
        </dependency>
T
tristaZero 已提交
44 45 46 47 48
        
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
        </dependency>
T
terrymanu 已提交
49
    </dependencies>
T
terrymanu 已提交
50
    
C
codefairy08 已提交
51
    <build>
马晓光 已提交
52
        <plugins>
T
terrymanu 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
            <plugin>
                <groupId>org.antlr</groupId>
                <artifactId>antlr4-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>antlr</id>
                        <configuration>
                            <libDirectory>src/main/antlr4/imports/</libDirectory>
                            <listener>false</listener>
                            <visitor>false</visitor>
                        </configuration>
                        <goals>
                            <goal>antlr4</goal>
                        </goals>
                     </execution>
                </executions>
             </plugin>
马晓光 已提交
70 71
        </plugins>
    </build>
T
terrymanu 已提交
72
</project>