| <!-- |
| ~ 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.13.0</version> |
| </parent> |
| <artifactId>antlr4-maven-plugin</artifactId> |
| <packaging>maven-plugin</packaging> |
| <name>ANTLR 4 Maven plugin</name> |
| <description>Maven plugin for ANTLR 4 grammars</description> |
| |
| <!-- Ancillary information for completeness --> |
| <inceptionYear>2009</inceptionYear> |
| |
| <properties> |
| <mavenVersion>3.8.5</mavenVersion> |
| </properties> |
| |
| <!-- ============================================================================= --> |
| |
| <!-- What are we depedent on for the Mojos to execute? We need the plugin |
| API itself and of course we need the ANTLR Tool and runtime and any of their |
| dependencies, which we inherit. The Tool itself provides us with all the |
| dependencies, so we need only name it here. --> |
| <dependencies> |
| |
| <!-- The things we need to build the target language recognizer --> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-compiler-api</artifactId> |
| <version>2.12.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.sonatype.plexus</groupId> |
| <artifactId>plexus-build-api</artifactId> |
| <version>0.0.7</version> |
| </dependency> |
| <!-- The version of ANTLR tool that this version of the plugin controls. |
| We have decided that this should be in lockstep with ANTLR itself, other |
| than -1 -2 -3 etc patch releases. --> |
| <dependency> |
| <groupId>org.antlr</groupId> |
| <artifactId>antlr4</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <!-- Testing requirements... --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.13.2</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.plugin-tools</groupId> |
| <artifactId>maven-plugin-annotations</artifactId> |
| <version>3.6.4</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.takari.maven.plugins</groupId> |
| <artifactId>takari-plugin-testing</artifactId> |
| <version>3.0.0</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-core</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-compat</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>3.4.2</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>2.0.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>2.0.0</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>resources</directory> |
| </resource> |
| </resources> |
| <testSourceDirectory>src/test</testSourceDirectory> |
| <testResources> |
| <testResource> |
| <directory>src/test/resources</directory> |
| </testResource> |
| </testResources> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-plugin-plugin</artifactId> |
| <version>3.6.2</version> |
| <configuration> |
| <!-- see http://jira.codehaus.org/browse/MNG-5346 --> |
| <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
| </configuration> |
| <executions> |
| <execution> |
| <id>mojo-descriptor</id> |
| <goals> |
| <goal>descriptor</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>help-goal</id> |
| <goals> |
| <goal>helpmojo</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>io.takari.maven.plugins</groupId> |
| <artifactId>takari-lifecycle-plugin</artifactId> |
| <version>2.0.7</version> |
| <extensions>true</extensions> |
| <executions> |
| <execution> |
| <id>testProperties</id> |
| <phase>process-test-resources</phase> |
| <goals> |
| <goal>testProperties</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <release>8</release> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>3.3.1</version> |
| <configuration> |
| <quiet>true</quiet> |
| </configuration> |
| </plugin> |
| </plugins> |
| </reporting> |
| </project> |