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 2021/03/23 18:50:35 UTC

[royale-compiler] branch develop updated: royale-maven-plugin: playerglobal/airglobal should use swf classifier instead of typedefs

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 e02df39  royale-maven-plugin: playerglobal/airglobal should use swf classifier instead of typedefs
e02df39 is described below

commit e02df39e64faa91712d1d55451d1f5525e6a9b43
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Tue Mar 23 11:50:16 2021 -0700

    royale-maven-plugin: playerglobal/airglobal should use swf classifier instead of typedefs
---
 .../src/main/java/org/apache/royale/maven/CompilePlayerglobalMojo.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompilePlayerglobalMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompilePlayerglobalMojo.java
index 237912a..0233138 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompilePlayerglobalMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompilePlayerglobalMojo.java
@@ -95,7 +95,7 @@ public class CompilePlayerglobalMojo
 
         if(getOutput().exists()) {
             // Add the extern to the artifact.
-            projectHelper.attachArtifact(project, getOutput(), "typedefs");
+            projectHelper.attachArtifact(project, getOutput(), "swf");
         }
     }