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
parent
50fb5c972c
commit
4c52ceca1b
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue