This is an automated email from the ASF dual-hosted git repository. cdutz pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 034623c73f5d5695c5c715c6752409e00fa01c36 Author: Christofer Dutz <[email protected]> AuthorDate: Sat Mar 13 13:28:11 2021 +0100 - Added the antlr-runtime.jar to the classpath - Added some comments on the Class-Path setting in pom.xml --- distribution/jars/compiler-asc/pom.xml | 1 + distribution/jars/compiler-compc/pom.xml | 1 + distribution/jars/compiler-compjsc/pom.xml | 1 + distribution/jars/compiler-mxmlc/pom.xml | 1 + distribution/jars/compiler-mxmljsc/pom.xml | 1 + distribution/jars/compiler-optimizer/pom.xml | 1 + distribution/jars/compiler-swfdump/pom.xml | 1 + distribution/jars/mxmlc/pom.xml | 1 + 8 files changed, 8 insertions(+) diff --git a/distribution/jars/compiler-asc/pom.xml b/distribution/jars/compiler-asc/pom.xml index fc21e56..19552e1 100644 --- a/distribution/jars/compiler-asc/pom.xml +++ b/distribution/jars/compiler-asc/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.ASC</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>compiler-common.jar compiler.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/compiler-compc/pom.xml b/distribution/jars/compiler-compc/pom.xml index 7b9218a..d027e76 100644 --- a/distribution/jars/compiler-compc/pom.xml +++ b/distribution/jars/compiler-compc/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.COMPC</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>compiler-common.jar compiler.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/compiler-compjsc/pom.xml b/distribution/jars/compiler-compjsc/pom.xml index 1e93e0b..cc5831f 100644 --- a/distribution/jars/compiler-compjsc/pom.xml +++ b/distribution/jars/compiler-compjsc/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.COMPJSC</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>jsc.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/compiler-mxmlc/pom.xml b/distribution/jars/compiler-mxmlc/pom.xml index 1df24fe..59139d5 100644 --- a/distribution/jars/compiler-mxmlc/pom.xml +++ b/distribution/jars/compiler-mxmlc/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.MXMLC</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>compiler-common.jar compiler.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/compiler-mxmljsc/pom.xml b/distribution/jars/compiler-mxmljsc/pom.xml index 8426b21..b4deb5c 100644 --- a/distribution/jars/compiler-mxmljsc/pom.xml +++ b/distribution/jars/compiler-mxmljsc/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.MXMLJSC</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>args4j.jar jsc.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/compiler-optimizer/pom.xml b/distribution/jars/compiler-optimizer/pom.xml index 4fcb4c6..44ebe85 100644 --- a/distribution/jars/compiler-optimizer/pom.xml +++ b/distribution/jars/compiler-optimizer/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.Optimizer</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>compiler-common.jar compiler.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/compiler-swfdump/pom.xml b/distribution/jars/compiler-swfdump/pom.xml index 8afea76..ca700e8 100644 --- a/distribution/jars/compiler-swfdump/pom.xml +++ b/distribution/jars/compiler-swfdump/pom.xml @@ -44,6 +44,7 @@ <manifestEntries> <!-- The Ant build refers to "commons-io.jar" but with a path, that doesn't exist, so it must also work without --> <!--Class-Path>compiler-common.jar compiler.jar external/commons-io.jar</Class-Path--> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>compiler-common.jar compiler.jar</Class-Path> </manifestEntries> </archive> diff --git a/distribution/jars/mxmlc/pom.xml b/distribution/jars/mxmlc/pom.xml index 9cca2a9..efab376 100644 --- a/distribution/jars/mxmlc/pom.xml +++ b/distribution/jars/mxmlc/pom.xml @@ -42,6 +42,7 @@ <mainClass>org.apache.royale.compiler.clients.MXMLC</mainClass> </manifest> <manifestEntries> + <!-- These paths are all defined the way the layout will be in the distribution --> <Class-Path>compiler-common.jar compiler.jar</Class-Path> </manifestEntries> </archive>
