Repository: flex-asjs Updated Branches: refs/heads/develop a8ca96c0d -> cb8a9811b
- Started adding pom.xmls for the native examples Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/cb8a9811 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/cb8a9811 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/cb8a9811 Branch: refs/heads/develop Commit: cb8a9811b8078886847bf13786de0fcc6a123ddb Parents: a8ca96c Author: Christofer Dutz <[email protected]> Authored: Thu Jun 23 11:01:03 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Thu Jun 23 11:01:03 2016 +0200 ---------------------------------------------------------------------- examples/native/ButtonExample/pom.xml | 52 ++++++++++++++++++++++++++++++ examples/native/USStatesMap/pom.xml | 52 ++++++++++++++++++++++++++++++ examples/native/pom.xml | 15 +++++++-- examples/pom.xml | 2 +- 4 files changed, 118 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cb8a9811/examples/native/ButtonExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/ButtonExample/pom.xml b/examples/native/ButtonExample/pom.xml new file mode 100644 index 0000000..b8ab42c --- /dev/null +++ b/examples/native/ButtonExample/pom.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-native</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> + + <artifactId>ButtonExample</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>swf</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <mainClass>ButtonExample.as</mainClass> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + </dependencies> + +</project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cb8a9811/examples/native/USStatesMap/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/USStatesMap/pom.xml b/examples/native/USStatesMap/pom.xml new file mode 100644 index 0000000..7c54596 --- /dev/null +++ b/examples/native/USStatesMap/pom.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-native</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> + + <artifactId>USStatesMap</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>swf</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <mainClass>USStatesMap.as</mainClass> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + </dependencies> + +</project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cb8a9811/examples/native/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/pom.xml b/examples/native/pom.xml index b008673..c4a2250 100644 --- a/examples/native/pom.xml +++ b/examples/native/pom.xml @@ -28,12 +28,23 @@ <version>0.7.0-SNAPSHOT</version> </parent> - <groupId>org.apache.flex.flexjs.examples</groupId> <artifactId>examples-native</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>pom</packaging> <modules> + <module>ButtonExample</module> + <module>USStatesMap</module> </modules> + <dependencies> + <dependency> + <groupId>com.adobe.flash.framework</groupId> + <artifactId>playerglobal</artifactId> + <version>20.0</version> + <type>swc</type> + <scope>external</scope> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cb8a9811/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index eebd4e9..6f67c71 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -34,7 +34,7 @@ <modules> <module>flexjs</module> - <module>native</module> + <!--module>native</module--> </modules> <build>
