55 lines
1.6 KiB
XML
55 lines
1.6 KiB
XML
<!--
|
|
~ Copyright (c) 2012-2017 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>org.antlr</groupId>
|
|
<artifactId>antlr4-master</artifactId>
|
|
<version>4.8-2-SNAPSHOT</version>
|
|
<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>
|
|
<groupId>com.github.olivergondza</groupId>
|
|
<artifactId>maven-jdk-tools-wrapper</artifactId>
|
|
<version>0.1</version>
|
|
</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>
|