aboutsummaryrefslogtreecommitdiff
path: root/antlr3-maven-plugin/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'antlr3-maven-plugin/pom.xml')
-rw-r--r--antlr3-maven-plugin/pom.xml125
1 files changed, 79 insertions, 46 deletions
diff --git a/antlr3-maven-plugin/pom.xml b/antlr3-maven-plugin/pom.xml
index 6fc1770..803b075 100644
--- a/antlr3-maven-plugin/pom.xml
+++ b/antlr3-maven-plugin/pom.xml
@@ -34,53 +34,27 @@
<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">
-
- <!-- Maven model we are inheriting from
- -->
<modelVersion>4.0.0</modelVersion>
-
- <!--
-
- Now that the ANTLR project has adopted Maven with a vengence,
- all ANTLR tools will be grouped under org.antlr and will be
- controlled by a project member.
- -->
- <groupId>org.antlr</groupId>
-
-
- <!--
-
- This is the ANTLR plugin for ANTLR version 3.1.3 and above. It might
- have been best to change the name of the plugin as the 3.1.2 plugins
- behave a little differently, however for the sake of one transitional
- phase to a much better plugin, it was decided that the name should
- remain the same.
- -->
- <artifactId>antlr3-maven-plugin</artifactId>
- <packaging>maven-plugin</packaging>
-
<parent>
<groupId>org.antlr</groupId>
<artifactId>antlr-master</artifactId>
- <version>3.5.2</version>
+ <version>3.5.3</version>
</parent>
-
+ <artifactId>antlr3-maven-plugin</artifactId>
+ <packaging>maven-plugin</packaging>
<name>ANTLR 3 Maven plugin</name>
- <prerequisites>
- <maven>2.0</maven>
- </prerequisites>
+
+ <properties>
+ <mavenVersion>3.8.4</mavenVersion>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
<!--
Where does our actual project live on the interwebs.
-->
<url>http://antlr.org</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
<description>
-
This is the brand new, re-written from scratch plugin for ANTLR v3.
Previous valiant efforts all suffered from being unable to modify the ANTLR Tool
@@ -106,11 +80,9 @@ to death. Hence even this pom has more comments than funcitonal elements,
in case I get run over by a bus or fall off a cliff while skiing.
Jim Idle - March 2009
-
</description>
<developers>
-
<developer>
<name>Jim Idle</name>
<url>http://www.temporal-wave.com</url>
@@ -159,25 +131,78 @@ Jim Idle - March 2009
<!--
The things we need to build the target language recognizer
-->
+ <!-- The things we need to build the target language recognizer -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
- <version>2.0</version>
- <scope>compile</scope>
+ <version>3.8.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-compiler-api</artifactId>
+ <version>2.9.0</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>antlr</artifactId>
+ <version>3.5.3</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.2</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-project</artifactId>
- <version>2.0</version>
+ <artifactId>maven-core</artifactId>
+ <version>3.8.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-compat</artifactId>
+ <version>3.8.4</version>
+ <scope>test</scope>
</dependency>
-
<dependency>
<groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-compiler-api</artifactId>
- <version>2.0</version>
+ <artifactId>plexus-utils</artifactId>
+ <version>3.4.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.7.32</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.7.32</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
@@ -201,7 +226,6 @@ Jim Idle - March 2009
<build>
<plugins>
-
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
@@ -225,6 +249,15 @@ Jim Idle - March 2009
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.3.1</version>
+ <configuration>
+ <failOnError>false</failOnError>
+ <quiet>true</quiet>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version>
</plugin>