2016-12-04 03:34:30 +08:00
|
|
|
<!--
|
2017-03-31 01:44:25 +08:00
|
|
|
~ Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2016-12-05 03:37:49 +08:00
|
|
|
~ Use of this file is governed by the BSD 3-clause license that
|
2016-12-04 03:34:30 +08:00
|
|
|
~ can be found in the LICENSE.txt file in the project root.
|
|
|
|
-->
|
|
|
|
|
2015-07-16 05:45:45 +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-27 04:33:32 +08:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-master</artifactId>
|
2020-11-25 04:45:28 +08:00
|
|
|
<version>4.9.1-SNAPSHOT</version>
|
2015-06-27 04:33:32 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>antlr4-tool-testsuite</artifactId>
|
|
|
|
<name>ANTLR 4 Tool Tests</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>
|
2020-01-19 02:07:26 +08:00
|
|
|
<version>4.3</version>
|
2016-12-11 07:31:17 +08:00
|
|
|
<scope>test</scope>
|
2015-06-27 04:33:32 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime-testsuite</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2016-12-11 07:31:17 +08:00
|
|
|
<scope>test</scope>
|
2016-12-11 07:58:28 +08:00
|
|
|
<type>test-jar</type>
|
2015-06-27 04:33:32 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2016-12-11 07:31:17 +08:00
|
|
|
<scope>test</scope>
|
2016-12-11 07:58:28 +08:00
|
|
|
</dependency>
|
2015-06-27 04:33:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-12-11 08:07:35 +08:00
|
|
|
<version>4.12</version>
|
2016-12-11 07:31:17 +08:00
|
|
|
<scope>test</scope>
|
2015-06-27 04:33:32 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2016-11-17 07:42:45 +08:00
|
|
|
<testSourceDirectory>test</testSourceDirectory>
|
2015-06-27 04:33:32 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2015-09-19 00:02:32 +08:00
|
|
|
<version>2.12.4</version>
|
2015-06-27 04:33:32 +08:00
|
|
|
<configuration>
|
2017-02-10 08:19:34 +08:00
|
|
|
<!-- SUREFIRE-951: file.encoding cannot be set via systemPropertyVariables -->
|
|
|
|
<argLine>-Dfile.encoding=UTF-8</argLine>
|
2016-11-17 07:42:45 +08:00
|
|
|
<includes>
|
|
|
|
<include>**/Test*.java</include>
|
|
|
|
</includes>
|
2015-06-27 04:33:32 +08:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<antlr-python2-runtime>../../antlr4-python2/src</antlr-python2-runtime>
|
|
|
|
<antlr-python3-runtime>../../antlr4-python3/src</antlr-python3-runtime>
|
|
|
|
<antlr-csharp-runtime-project>../../antlr4-csharp/runtime/CSharp/Antlr4.Runtime/Antlr4.Runtime.mono.csproj</antlr-csharp-runtime-project>
|
2016-05-06 12:56:13 +08:00
|
|
|
<antlr-cpp-runtime>../../antlr4-cpp/src</antlr-cpp-runtime>
|
2015-06-27 04:33:32 +08:00
|
|
|
<antlr-javascript-runtime>../../antlr4-javascript/src</antlr-javascript-runtime>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|