Skip antlr-generator-3.2.0-patch.jar download (#4849)

Uses antlr-generator-3.2.0-patch.jar in the repository as it currently can no longer be downloaded causing builds to fail.

See also: https://github.com/eclipse-xtext/xtext/issues/3443

Signed-off-by: Wouter Born <github@maindrain.net>
4.3.x
Wouter Born 2025-06-15 15:51:55 +02:00
parent 50fb5c972c
commit 4c52ceca1b
No known key found for this signature in database
GPG Key ID: A58E5C231E0E72B5
8 changed files with 29 additions and 6 deletions

View File

@ -72,7 +72,7 @@
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
<systemPath>${project.basedir}/../.antlr-generator-3.2.0-patch.jar</systemPath>
</dependency>
</dependencies>
<executions>

View File

@ -77,7 +77,7 @@
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
<systemPath>${project.basedir}/../.antlr-generator-3.2.0-patch.jar</systemPath>
</dependency>
</dependencies>
<executions>

View File

@ -77,7 +77,7 @@
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
<systemPath>${project.basedir}/../.antlr-generator-3.2.0-patch.jar</systemPath>
</dependency>
</dependencies>
<executions>

View File

@ -113,7 +113,7 @@
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
<systemPath>${project.basedir}/../.antlr-generator-3.2.0-patch.jar</systemPath>
</dependency>
</dependencies>
<executions>

View File

@ -72,7 +72,7 @@
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
<systemPath>${project.basedir}/../.antlr-generator-3.2.0-patch.jar</systemPath>
</dependency>
</dependencies>
<executions>

View File

@ -95,7 +95,7 @@
<artifactId>antlr-runtime</artifactId>
<version>3.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../antlr-generator-3.2.0-patch.jar</systemPath>
<systemPath>${project.basedir}/../.antlr-generator-3.2.0-patch.jar</systemPath>
</dependency>
</dependencies>
<executions>

View File

@ -319,6 +319,29 @@
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-antlr-generator-patch</id>
<goals>
<goal>copy-resources</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<outputDirectory>${basedir}/</outputDirectory>
<resources>
<resource>
<directory>${basedirRoot}/bundles</directory>
<includes>
<include>.antlr-generator-3.2.0-patch.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>