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 <[email protected]> Authored: Tue Jun 21 12:29:22 2016 +0200 Committer: Christofer Dutz <[email protected]> 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
