You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2019/07/16 17:34:48 UTC

[royale-compiler] branch develop updated: CompileJSMojo: allow forceSwcExternalLibraryPath for JS SWCs

This is an automated email from the ASF dual-hosted git repository.

joshtynjala 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 ffb4d64  CompileJSMojo: allow forceSwcExternalLibraryPath for JS SWCs
ffb4d64 is described below

commit ffb4d643e6f163518214c32452efb71a5dc73aa9
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Tue Jul 16 10:34:40 2019 -0700

    CompileJSMojo: allow forceSwcExternalLibraryPath for JS SWCs
---
 .../src/main/java/org/apache/royale/maven/CompileJSMojo.java        | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java
index 2639e68..5f80ccb 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java
@@ -76,12 +76,6 @@ public class CompileJSMojo
     }
 
     @Override
-    protected boolean isForceSwcExternalLibraryPath() {
-        // The forceSwcExternalLibraryPath should only apply to Flash compilations.
-        return false;
-    }
-
-    @Override
     protected List<String> getCompilerArgs(File configFile) throws MojoExecutionException {
         List<String> args = super.getCompilerArgs(configFile);
         args.add("-compiler.targets=SWF,JSRoyale");