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>
pull/4848/head
Wouter Born 2025-06-15 15:51:55 +02:00 committed by GitHub
parent 98e3b13c71
commit 8becc209f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 29 additions and 6 deletions

View File

@ -75,7 +75,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

@ -80,7 +80,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

@ -80,7 +80,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

@ -116,7 +116,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

@ -75,7 +75,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

@ -98,7 +98,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

@ -316,6 +316,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>