You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.4 KiB
83 lines
2.4 KiB
4 months ago
|
<?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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>gunit</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>ANTLR 3 gUnit</name>
|
||
|
<description>gUnit grammar testing tool for ANTLR 3</description>
|
||
|
|
||
|
<!--
|
||
|
|
||
|
Inherit from the ANTLR master pom, which tells us what
|
||
|
version we are and allows us to inherit dependencies
|
||
|
and so on.
|
||
|
|
||
|
-->
|
||
|
<parent>
|
||
|
<groupId>org.antlr</groupId>
|
||
|
<artifactId>antlr-master</artifactId>
|
||
|
<version>3.5.2</version>
|
||
|
</parent>
|
||
|
|
||
|
<url>http://www.antlr.org/wiki/display/ANTLR3/gUnit+-+Grammar+Unit+Testing</url>
|
||
|
|
||
|
<!--
|
||
|
|
||
|
Tell Maven which other artifacts we need in order to
|
||
|
build, run and test the ANTLR Tool. The ANTLR Tool uses earlier versions
|
||
|
of ANTLR at runtime (for the moment), uses the current
|
||
|
released version of ANTLR String template, but obviously is
|
||
|
reliant on the latest snapshot of the runtime, which will either be
|
||
|
taken from the antlr-snapshot repository, or your local .m2
|
||
|
repository if you built and installed that locally.
|
||
|
|
||
|
-->
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.antlr</groupId>
|
||
|
<artifactId>antlr</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.antlr</groupId>
|
||
|
<artifactId>stringtemplate</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
|
||
|
<plugins>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.antlr</groupId>
|
||
|
<artifactId>antlr3-maven-plugin</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<configuration />
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>antlr</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
|
||
|
</build>
|
||
|
|
||
|
</project>
|