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.
|
|
|
|
-->
|
|
|
|
|
2016-11-16 03:08:19 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-master</artifactId>
|
2018-12-19 02:35:34 +08:00
|
|
|
<version>4.7.3-SNAPSHOT</version>
|
2016-11-16 03:08:19 +08:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>antlr4-runtime-test-annotation-processors</artifactId>
|
|
|
|
<name>ANTLR 4 Runtime Test Processors</name>
|
|
|
|
<description>The ANTLR 4 Runtime</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-11-08 05:49:35 +08:00
|
|
|
<groupId>com.github.olivergondza</groupId>
|
|
|
|
<artifactId>maven-jdk-tools-wrapper</artifactId>
|
|
|
|
<version>0.1</version>
|
2016-11-16 03:08:19 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime-test-annotations</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
<compilerArgument>
|
|
|
|
-proc:none
|
|
|
|
</compilerArgument>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|