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/06/21 10:29:29 UTC

git commit: [flex-asjs] [refs/heads/develop] - - Made sure the js-extern is added to the external library path for all framework modules

Repository: flex-asjs
Updated Branches:
  refs/heads/develop e2601d0b0 -> 46349e7a0


- Made sure the js-extern is added to the external library path for all framework modules


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/46349e7a
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/46349e7a
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/46349e7a

Branch: refs/heads/develop
Commit: 46349e7a0cb2484c51df8950f958023fccfb3803
Parents: e2601d0
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Tue Jun 21 12:29:22 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Tue Jun 21 12:29:22 2016 +0200

----------------------------------------------------------------------
 frameworks/pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/46349e7a/frameworks/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/pom.xml b/frameworks/pom.xml
index cfe077b..2fef9c3 100644
--- a/frameworks/pom.xml
+++ b/frameworks/pom.xml
@@ -36,4 +36,20 @@
     <module>projects</module>
   </modules>
 
+  <dependencies>
+    <!--
+      By declaring this dependency here, we force the flexjs-externs-js to be
+      added to the external library path of all modules. Without this it would
+      have gone to the library path.
+    -->
+    <dependency>
+      <groupId>org.apache.flex.flexjs.externs</groupId>
+      <artifactId>flexjs-externs-js</artifactId>
+      <version>0.7.0-SNAPSHOT</version>
+      <type>swc</type>
+      <classifier>extern</classifier>
+      <scope>external</scope>
+    </dependency>
+  </dependencies>
+
 </project>
\ No newline at end of file