You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/05/18 07:49:56 UTC

git commit: [flex-utilities] [refs/heads/develop] - - Made the mavenizer skip artifacts with "flexjs" in their groupId

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 15fd3da55 -> 03bc7db7a


- Made the mavenizer skip artifacts with "flexjs" in their groupId


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/03bc7db7
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/03bc7db7
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/03bc7db7

Branch: refs/heads/develop
Commit: 03bc7db7a49912b6f401ac1a9a6b3e7e8a2b6e55
Parents: 15fd3da
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Wed May 18 09:49:41 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Wed May 18 09:49:41 2016 +0200

----------------------------------------------------------------------
 .../flex/utilities/converter/mavenextension/FlexEventSpy.java       | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/03bc7db7/flex-maven-tools/flex-sdk-converter/maven-extension/src/main/java/org/apache/flex/utilities/converter/mavenextension/FlexEventSpy.java
----------------------------------------------------------------------
diff --git a/flex-maven-tools/flex-sdk-converter/maven-extension/src/main/java/org/apache/flex/utilities/converter/mavenextension/FlexEventSpy.java b/flex-maven-tools/flex-sdk-converter/maven-extension/src/main/java/org/apache/flex/utilities/converter/mavenextension/FlexEventSpy.java
index 0a03455..049d7b8 100644
--- a/flex-maven-tools/flex-sdk-converter/maven-extension/src/main/java/org/apache/flex/utilities/converter/mavenextension/FlexEventSpy.java
+++ b/flex-maven-tools/flex-sdk-converter/maven-extension/src/main/java/org/apache/flex/utilities/converter/mavenextension/FlexEventSpy.java
@@ -99,6 +99,7 @@ public class FlexEventSpy extends AbstractEventSpy {
                         Artifact artifact = repositoryEvent.getArtifact();
 
                         if (artifact.getGroupId().startsWith("org.apache.flex") &&
+                                !artifact.getGroupId().contains(".flexjs") &&
                                 !"rb.swc".equals(artifact.getExtension())) {
                             // Output a cool splash-screen ... sorry for that ... couldn't resist :-)
                             if(!flexSplashScreenShown) {