This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
The following commit(s) were added to refs/heads/develop by this push:
new 4270342 maven-distribution: final fix in classpaths to make it work
with the new name strategy without version number
4270342 is described below
commit 4270342907136e8cdb85bca39b3fae8f6fff247b
Author: Carlos Rovira <[email protected]>
AuthorDate: Sun Feb 21 18:51:07 2021 +0100
maven-distribution: final fix in classpaths to make it work with the new
name strategy without version number
---
compiler-common/pom.xml | 17 +++++++++++++++++
compiler-jx/pom.xml | 2 +-
compiler/pom.xml | 3 +--
3 files changed, 19 insertions(+), 3 deletions(-)
diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 11bac54..79d5a8d 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -30,6 +30,23 @@
<name>Apache Royale: Compiler: Compiler-Common</name>
<description>The Apache Royale Compiler Common classes</description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Sealed>false</Sealed>
+ <Class-Path>external/commons-cli.jar external/commons-io.jar
external/ guava.jar ..</Class-Path>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<dependencies>
<dependency>
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 99eecf6..565e942 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -39,7 +39,7 @@
<archive>
<manifestEntries>
<Sealed>false</Sealed>
- <Class-Path>commons-io.jar guava.jar
../../lib/external/antlr.jar ../../lib/external/commons-lang.jar
google/closure-compiler/compiler.jar ../../lib/compiler.jar
../../lib/compiler-common.jar</Class-Path>
+ <Class-Path>commons-io.jar guava.jar
../../lib/external/antlr.jar ../../lib/external/antlr-runtime.jar ../..jar
../../compiler/lib/external/commons-lang-2.6.jar
../../lib/external/closure-compiler.jar ../../compiler/lib/compiler.jar
../../lib/compiler.jar ../../compiler/lib/compiler-common.jar
../../lib/compiler-common.jar</Class-Path>
</manifestEntries>
</archive>
</configuration>
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 76df53a..36693b0 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -39,8 +39,7 @@
<configuration>
<archive>
<manifestEntries>
- <Class-Path>external/closure-compiler-v20181210.jar
compiler-common.jar external/antlr-2.7.7.jar external/antlr-3.3.jar
external/antlr-runtime-3.3.jar external/commons-cli-1.2.jar
external/commons-io-2.4.jar external/guava-25.1-jre.jar
external/lzma-sdk-4j-9.22.0.jar external/flex-tool-api-1.0.0.jar ..</Class-Path>
- <!-- <Class-Path>compiler-common.jar external/antlr.jar
external/commons-cli.jar external/commons-io.jar external/guava.jar
external/lzma-sdk.jar external/flex-tool-api.jar ..</Class-Path> -->
+ <Class-Path>compiler-common.jar external/antlr.jar
external/commons-cli.jar external/commons-io.jar external/guava.jar
external/lzma-sdk.jar external/flex-tool-api.jar ..</Class-Path>
</manifestEntries>
</archive>
</configuration>