2015-04-20 01:24:07 +08:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2015-06-02 05:20:32 +08:00
|
|
|
|
2015-04-20 01:24:07 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2015-06-02 05:20:32 +08:00
|
|
|
<groupId>org.antlr</groupId>
|
2015-04-20 01:24:07 +08:00
|
|
|
<artifactId>antlr4-master</artifactId>
|
2015-06-02 05:20:32 +08:00
|
|
|
<version>4.5.1-SNAPSHOT</version>
|
2015-04-20 01:24:07 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>runtime-testsuite</artifactId>
|
|
|
|
<name>ANTLR 4 Runtime Test Generator</name>
|
|
|
|
<description>A collection of tests for ANTLR 4 Runtime libraries.</description>
|
|
|
|
|
|
|
|
<prerequisites>
|
|
|
|
<maven>3.0</maven>
|
|
|
|
</prerequisites>
|
|
|
|
|
|
|
|
<inceptionYear>2009</inceptionYear>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>ST4</artifactId>
|
|
|
|
<version>4.0.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
</build>
|
2015-06-02 05:20:32 +08:00
|
|
|
</project>
|