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
parent
98e3b13c71
commit
8becc209f1
|
@ -75,7 +75,7 @@
|
||||||
<artifactId>antlr-runtime</artifactId>
|
<artifactId>antlr-runtime</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<scope>system</scope>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
<artifactId>antlr-runtime</artifactId>
|
<artifactId>antlr-runtime</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<scope>system</scope>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
<artifactId>antlr-runtime</artifactId>
|
<artifactId>antlr-runtime</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<scope>system</scope>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -116,7 +116,7 @@
|
||||||
<artifactId>antlr-runtime</artifactId>
|
<artifactId>antlr-runtime</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<scope>system</scope>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
<artifactId>antlr-runtime</artifactId>
|
<artifactId>antlr-runtime</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<scope>system</scope>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -98,7 +98,7 @@
|
||||||
<artifactId>antlr-runtime</artifactId>
|
<artifactId>antlr-runtime</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<scope>system</scope>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
|
|
|
@ -316,6 +316,29 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
<plugins>
|
<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>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>build-helper-maven-plugin</artifactId>
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue