Repository: flex-asjs Updated Branches: refs/heads/develop fd709d137 -> b350e4de9
- Made the native exampes build in maven Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/3b95eca2 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/3b95eca2 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/3b95eca2 Branch: refs/heads/develop Commit: 3b95eca281ac9da560415ca64eac4557b7a30370 Parents: 3d3914b Author: Christofer Dutz <[email protected]> Authored: Fri Mar 10 16:14:30 2017 +0100 Committer: Christofer Dutz <[email protected]> Committed: Fri Mar 10 16:14:30 2017 +0100 ---------------------------------------------------------------------- examples/native/ButtonExample/pom.xml | 8 ++++++++ examples/native/USStatesMap/pom.xml | 15 +++++++++++++++ examples/pom.xml | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/3b95eca2/examples/native/ButtonExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/ButtonExample/pom.xml b/examples/native/ButtonExample/pom.xml index 7de1b4e..0cc09a6 100644 --- a/examples/native/ButtonExample/pom.xml +++ b/examples/native/ButtonExample/pom.xml @@ -46,6 +46,14 @@ <targets>JS</targets> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/3b95eca2/examples/native/USStatesMap/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/USStatesMap/pom.xml b/examples/native/USStatesMap/pom.xml index daed565..2dac85b 100644 --- a/examples/native/USStatesMap/pom.xml +++ b/examples/native/USStatesMap/pom.xml @@ -46,10 +46,25 @@ <targets>JS</targets> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + </plugin> </plugins> </build> <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Language</artifactId> + <version>0.8.0-SNAPSHOT</version> + <type>swc</type> + <classifier>js</classifier> + </dependency> </dependencies> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/3b95eca2/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index fee625c..2ebcc32 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -40,7 +40,7 @@ <modules> <module>flexjs</module> - <!--<module>native</module>--> + <module>native</module> <module>examples-tests</module> <module>examples-integrationtests</module>
