pom.xml 2.2 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
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP-java7</artifactId>
        </dependency>
        <dependency>
马晓光 已提交
41 42
            <groupId>org.antlr</groupId>
	        <artifactId>antlr4</artifactId>
T
terrymanu 已提交
43 44
        </dependency>
    </dependencies>
C
codefairy08 已提交
45
    <build>
马晓光 已提交
46 47 48
        <plugins>
	        <plugin>
		    	<groupId>org.antlr</groupId>
C
codefairy08 已提交
49 50 51
				<artifactId>antlr4-maven-plugin</artifactId>
				<version>4.7.1</version> <!-- use older version to process XPathLexer.g4, avoiding cyclic build dependency -->
				<executions>
马晓光 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
		    		<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>
        </plugins>
    </build>
T
terrymanu 已提交
67
</project>