runtime-testsuite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tunnelvisionlabs</groupId> <artifactId>runtime-testsuite</artifactId> <version>4.9.0</version> </dependency>
<!-- ~ Copyright (c) 2012 The ANTLR Project. All rights reserved. ~ Use of this file is governed by the BSD-3-Clause license that ~ can be found in the LICENSE.txt file in the project root. --> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.tunnelvisionlabs</groupId> <artifactId>antlr4-master</artifactId> <version>4.9.0</version> </parent> <artifactId>runtime-testsuite</artifactId> <packaging>jar</packaging> <name>ANTLR 4 Runtime Test Generator</name> <description>A collection of tests for ANTLR 4 Runtime libraries.</description> <url>http://www.antlr.org</url> <prerequisites> <maven>3.0</maven> </prerequisites> <inceptionYear>2009</inceptionYear> <dependencies> <dependency> <groupId>org.antlr</groupId> <artifactId>ST4</artifactId> <version>4.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <resources> <resource> <directory>resources</directory> </resource> </resources> </build> </project>