Repository: flex-asjs Updated Branches: refs/heads/develop 33636e75d -> a8ca96c0d
- Added a maven configuration for the MobileMap module - Updated the template for compiling flash applications by using the content of flex-config.xml as a baseline - Enabled all example modules as they now all seem to be compiling Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a8ca96c0 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a8ca96c0 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a8ca96c0 Branch: refs/heads/develop Commit: a8ca96c0d9301cb1ce0f421164892efb10f4f436 Parents: 33636e7 Author: Christofer Dutz <[email protected]> Authored: Thu Jun 23 09:50:09 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Thu Jun 23 09:50:09 2016 +0200 ---------------------------------------------------------------------- examples/flexjs/MobileMap/pom.xml | 64 ++++++++++++++++++++++++++++++++++ examples/flexjs/pom.xml | 16 ++++----- 2 files changed, 70 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a8ca96c0/examples/flexjs/MobileMap/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MobileMap/pom.xml b/examples/flexjs/MobileMap/pom.xml new file mode 100644 index 0000000..4cbe190 --- /dev/null +++ b/examples/flexjs/MobileMap/pom.xml @@ -0,0 +1,64 @@ +<?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-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> + + <artifactId>MobileMap</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>MobileMap.mxml</mainClass> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Mobile</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>GoogleMaps</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + +</project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a8ca96c0/examples/flexjs/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/pom.xml b/examples/flexjs/pom.xml index 11de4a9..7e80288 100644 --- a/examples/flexjs/pom.xml +++ b/examples/flexjs/pom.xml @@ -41,18 +41,14 @@ <module>DataBindingExample_Flat</module> <module>DataGridExample</module> <module>DesktopMap</module> - <!-- Ambiguous "MouseEvent" --> - <!--module>FlexJSStore</module--> - <!-- Ambiguous "MouseEvent" --> - <!--module>FlexJSStore_jquery</module--> - <!-- Ambiguous "MouseEvent" --> - <!--module>FlexWebsiteStatsViewer</module--> + <module>FlexJSStore</module> + <module>FlexJSStore_jquery</module> + <module>FlexWebsiteStatsViewer</module> <module>HelloWorld</module> <module>MapSearch</module> - <!-- Implicit coercion of a value with static type Event to a possibly unrelated type Event. --> - <!--module>MobileTrader</module--> - <!-- Ambiguous reference to IDataInput --> - <!--module>StorageExample</module--> + <module>MobileMap</module> + <module>MobileTrader</module> + <module>StorageExample</module> <module>TodoListSampleApp</module> <module>TreeExample</module> </modules>
