- Added/Updated the poms of the examples to use the flexjs-maven-plugin instead of flexmojos - Added/Updated the dependencies - Made most of the examples compile
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/7b295cee Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/7b295cee Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/7b295cee Branch: refs/heads/spark Commit: 7b295cee978f24bbae085ace0d248860f376dcb8 Parents: 0f49ba6 Author: Christofer Dutz <[email protected]> Authored: Wed May 18 16:53:10 2016 +0200 Committer: Alex Harui <[email protected]> Committed: Thu May 26 16:04:22 2016 -0700 ---------------------------------------------------------------------- examples/flexjs/ChartExample/pom.xml | 32 ++- examples/flexjs/CordovaCameraExample/pom.xml | 26 ++- examples/flexjs/CreateJSExample/pom.xml | 28 ++- examples/flexjs/DataBindingExample/pom.xml | 24 ++- examples/flexjs/DataBindingExample_Flat/pom.xml | 24 ++- examples/flexjs/DataBindingExample_as/pom.xml | 19 +- examples/flexjs/DataGridExample/pom.xml | 17 +- examples/flexjs/DesktopMap/pom.xml | 26 ++- examples/flexjs/FlexJSStore/pom.xml | 44 +++- examples/flexjs/FlexJSStore_jquery/pom.xml | 50 ++++- examples/flexjs/FlexWebsiteStatsViewer/pom.xml | 38 +++- examples/flexjs/MapSearch/pom.xml | 26 ++- examples/flexjs/MobileTrader/pom.xml | 38 +++- examples/flexjs/StorageExample/pom.xml | 26 ++- examples/flexjs/TodoListSampleApp/pom.xml | 19 +- examples/flexjs/TreeExample/pom.xml | 17 +- examples/flexjs/pom.xml | 201 +++---------------- examples/native/pom.xml | 39 ++++ examples/pom.xml | 64 ++++++ pom.xml | 101 +++++----- 20 files changed, 495 insertions(+), 364 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/ChartExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/ChartExample/pom.xml b/examples/flexjs/ChartExample/pom.xml index 7a44be8..7afee47 100644 --- a/examples/flexjs/ChartExample/pom.xml +++ b/examples/flexjs/ChartExample/pom.xml @@ -23,28 +23,42 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>ChartExample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>ChartExample.mxml</sourceFile> + <mainClass>ChartExample.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Charts</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Graphics</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/CordovaCameraExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/CordovaCameraExample/pom.xml b/examples/flexjs/CordovaCameraExample/pom.xml index 8252b32..5d845fb 100644 --- a/examples/flexjs/CordovaCameraExample/pom.xml +++ b/examples/flexjs/CordovaCameraExample/pom.xml @@ -23,28 +23,36 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>CordovaCameraExample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>CordovaCameraExample.mxml</sourceFile> + <mainClass>CordovaCameraExample.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> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/CreateJSExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/CreateJSExample/pom.xml b/examples/flexjs/CreateJSExample/pom.xml index 286e2ae..907d055 100644 --- a/examples/flexjs/CreateJSExample/pom.xml +++ b/examples/flexjs/CreateJSExample/pom.xml @@ -23,28 +23,36 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> - <artifactId>DataBindingExample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <artifactId>CreateJSExample</artifactId> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>DataBindingExample.mxml</sourceFile> + <mainClass>CreateJSExample.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>CreateJS</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/DataBindingExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample/pom.xml b/examples/flexjs/DataBindingExample/pom.xml index 286e2ae..93b7a84 100644 --- a/examples/flexjs/DataBindingExample/pom.xml +++ b/examples/flexjs/DataBindingExample/pom.xml @@ -23,9 +23,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>DataBindingExample</artifactId> @@ -33,18 +33,26 @@ <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>DataBindingExample.mxml</sourceFile> + <mainClass>DataBindingExample.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Network</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/DataBindingExample_Flat/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample_Flat/pom.xml b/examples/flexjs/DataBindingExample_Flat/pom.xml index 4132933..3fd04ca 100644 --- a/examples/flexjs/DataBindingExample_Flat/pom.xml +++ b/examples/flexjs/DataBindingExample_Flat/pom.xml @@ -23,9 +23,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>DataBindingExample_Flat</artifactId> @@ -33,18 +33,26 @@ <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>DataBindingExample.mxml</sourceFile> + <mainClass>DataBindingExample.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Network</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/DataBindingExample_as/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample_as/pom.xml b/examples/flexjs/DataBindingExample_as/pom.xml index 1b19654..59dd151 100644 --- a/examples/flexjs/DataBindingExample_as/pom.xml +++ b/examples/flexjs/DataBindingExample_as/pom.xml @@ -23,9 +23,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>DataBindingExample_as</artifactId> @@ -33,16 +33,15 @@ <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>DataBindingExample.as</sourceFile> - <defines> + <mainClass>DataBindingExample.mxml</mainClass> + <!--defines> <property> <name>CONFIG::as_only</name> <value>true</value> @@ -51,7 +50,7 @@ <name>CONFIG::js_only</name> <value>false</value> </property> - </defines> + </defines--> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/DataGridExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataGridExample/pom.xml b/examples/flexjs/DataGridExample/pom.xml index 2c221a3..8778409 100644 --- a/examples/flexjs/DataGridExample/pom.xml +++ b/examples/flexjs/DataGridExample/pom.xml @@ -23,25 +23,24 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>DataGridExample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>DataGridExample.mxml</sourceFile> + <mainClass>DataGridExample.mxml</mainClass> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/DesktopMap/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DesktopMap/pom.xml b/examples/flexjs/DesktopMap/pom.xml index e43ce23..24650bb 100644 --- a/examples/flexjs/DesktopMap/pom.xml +++ b/examples/flexjs/DesktopMap/pom.xml @@ -23,28 +23,36 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>DesktopMap</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>DesktopMap.mxml</sourceFile> + <mainClass>DesktopMap.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <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/7b295cee/examples/flexjs/FlexJSStore/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore/pom.xml b/examples/flexjs/FlexJSStore/pom.xml index def30f6..853a866 100644 --- a/examples/flexjs/FlexJSStore/pom.xml +++ b/examples/flexjs/FlexJSStore/pom.xml @@ -23,28 +23,54 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>FlexJSStore</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>FlexJSStore.mxml</sourceFile> + <mainClass>FlexJSStore.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>DragDrop</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Effects</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Formatters</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Network</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/FlexJSStore_jquery/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore_jquery/pom.xml b/examples/flexjs/FlexJSStore_jquery/pom.xml index 4cbea24..a5b5197 100644 --- a/examples/flexjs/FlexJSStore_jquery/pom.xml +++ b/examples/flexjs/FlexJSStore_jquery/pom.xml @@ -23,28 +23,60 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>FlexJSStore_jquery</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>FlexJSStore.mxml</sourceFile> + <mainClass>FlexJSStore.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>DragDrop</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Effects</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Formatters</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>JQuery</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Network</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/FlexWebsiteStatsViewer/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexWebsiteStatsViewer/pom.xml b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml index b023de7..97f1243 100644 --- a/examples/flexjs/FlexWebsiteStatsViewer/pom.xml +++ b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml @@ -23,28 +23,48 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>FlexWebsiteStatsViewer</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>FlexWebsiteStatsViewer.mxml</sourceFile> + <mainClass>FlexWebsiteStatsViewer.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Network</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Collections</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Charts</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/MapSearch/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MapSearch/pom.xml b/examples/flexjs/MapSearch/pom.xml index 7624a65..14bb1e6 100644 --- a/examples/flexjs/MapSearch/pom.xml +++ b/examples/flexjs/MapSearch/pom.xml @@ -23,28 +23,36 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>MapSearch</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>MapSearch.mxml</sourceFile> + <mainClass>MapSearch.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <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/7b295cee/examples/flexjs/MobileTrader/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MobileTrader/pom.xml b/examples/flexjs/MobileTrader/pom.xml index 9c867a0..734fb93 100644 --- a/examples/flexjs/MobileTrader/pom.xml +++ b/examples/flexjs/MobileTrader/pom.xml @@ -23,28 +23,48 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>MobileTrader</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>MobileTrader.mxml</sourceFile> + <mainClass>MobileTrader.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Charts</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <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>Network</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/StorageExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/StorageExample/pom.xml b/examples/flexjs/StorageExample/pom.xml index 06ac9b2..ec50892 100644 --- a/examples/flexjs/StorageExample/pom.xml +++ b/examples/flexjs/StorageExample/pom.xml @@ -23,28 +23,36 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>StorageExample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>StorageExample.mxml</sourceFile> + <mainClass>StorageExample.mxml</mainClass> </configuration> </plugin> </plugins> </build> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Storage</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> + </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/TodoListSampleApp/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/TodoListSampleApp/pom.xml b/examples/flexjs/TodoListSampleApp/pom.xml index 473d363..35d24e5 100644 --- a/examples/flexjs/TodoListSampleApp/pom.xml +++ b/examples/flexjs/TodoListSampleApp/pom.xml @@ -23,25 +23,24 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> - <artifactId>TodoListSample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <artifactId>TodoListSampleApp</artifactId> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>TodoListSampleApp.mxml</sourceFile> + <mainClass>TodoListSampleApp.mxml</mainClass> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/TreeExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/TreeExample/pom.xml b/examples/flexjs/TreeExample/pom.xml index 1cf03f8..61e4f0a 100644 --- a/examples/flexjs/TreeExample/pom.xml +++ b/examples/flexjs/TreeExample/pom.xml @@ -23,25 +23,24 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> </parent> <artifactId>TreeExample</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>0.7.0-SNAPSHOT</version> <packaging>swf</packaging> <build> - <sourceDirectory>src</sourceDirectory> <plugins> <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> <extensions>true</extensions> <configuration> - <sourceFile>TreeExample.mxml</sourceFile> + <mainClass>TreeExample.mxml</mainClass> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/flexjs/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/pom.xml b/examples/flexjs/pom.xml index 33cc4ff..24132a5 100644 --- a/examples/flexjs/pom.xml +++ b/examples/flexjs/pom.xml @@ -22,197 +22,60 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.apache.flex.examples.flexjs</groupId> - <artifactId>examples</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>pom</packaging> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> - <properties> - <!-- Comment this in to build Flash output --> - <flexmojos-compiler-name>Falcon</flexmojos-compiler-name> - <!-- Comment this in to build HTML+JavaScript output --> - <!--flexmojos-compiler-name>FlexJS</flexmojos-compiler-name--> - </properties> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>pom</packaging> <modules> <module>ChartExample</module> <module>CordovaCameraExample</module> + <module>CreateJSExample</module> <module>DataBindingExample</module> - <module>DataBindingExample_as</module> + <!-- Needs "depends" support --> + <!--module>DataBindingExample_as</module--> <module>DataBindingExample_Flat</module> <module>DataGridExample</module> <module>DesktopMap</module> - <!-- - "Ambiguous reference to MouseEvent" problem - --> - <!--module>FlexJSStore_jquery</module--> - <!-- - "Ambiguous reference to MouseEvent" problem - --> + <!-- Ambiguous "MouseEvent" --> <!--module>FlexJSStore</module--> - <module>FlexWebsiteStatsViewer</module> + <!-- Ambiguous "MouseEvent" --> + <!--module>FlexJSStore_jquery</module--> + <!-- Ambiguous "MouseEvent" --> + <!--module>FlexWebsiteStatsViewer</module--> <module>MapSearch</module> - <!-- - Implicit coercion of a value with static type Event to a possibly unrelated type Event. - <basic:TabbedViewManager id="navController" width="100%" height="100%" x="0" y="0" viewChanged="tabbedViewChanged(event)"> - --> + <!-- 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>TodoListSampleApp</module> + <module>TreeExample</module> </modules> - <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>net.flexmojos.oss</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - <version>7.1.0-SNAPSHOT</version> - <extensions>true</extensions> - <configuration> - <compilerName>${flexmojos-compiler-name}</compilerName> - <debug>true</debug> - <defines> - <property> - <name>CONFIG::theme</name> - <value>false</value> - </property> - </defines> - </configuration> - <dependencies> - <dependency> - <groupId>org.apache.flex.compiler</groupId> - <artifactId>falcon-jx-compiler</artifactId> - <version>0.7.0-SNAPSHOT</version> - </dependency> - </dependencies> - </plugin> - </plugins> - </pluginManagement> - </build> - <dependencies> <dependency> - <groupId>org.apache.flex.flexjs</groupId> - <artifactId>framework</artifactId> + <groupId>com.adobe.flash.framework</groupId> + <artifactId>playerglobal</artifactId> + <version>20.0</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> <version>0.7.0-SNAPSHOT</version> - <type>pom</type> + <type>swc</type> </dependency> <dependency> - <groupId>com.adobe.flash.framework</groupId> - <artifactId>playerglobal</artifactId> - <version>18.0</version> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>HTML</artifactId> + <version>0.7.0-SNAPSHOT</version> <type>swc</type> </dependency> </dependencies> - <repositories> - <!-- - This is where we get released stuff from. - --> - <repository> - <id>maven-central</id> - <url>http://repo1.maven.org/maven2/</url> - <releases> - <enabled>true</enabled> - </releases> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - <!-- - This is where we get unreleased Apache stuff from - --> - <repository> - <id>apache-snapshots</id> - <url>http://repository.apache.org/content/groups/snapshots/</url> - <releases> - <enabled>false</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - <!-- - This is where we get unreleased Flexmojos stuff from. - --> - <repository> - <id>sonatype-snapshots</id> - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> - <releases> - <enabled>false</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - <!-- - This is where third party dependencies for flexmojos come from. - --> - <repository> - <id>sonatype-flexmojos-cache</id> - <url>https://repository.sonatype.org/content/groups/flexgroup/</url> - <releases> - <enabled>true</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - </repositories> - - <pluginRepositories> - <!-- - This is where we get released stuff from. - --> - <pluginRepository> - <id>maven-central</id> - <url>http://repo1.maven.org/maven2/</url> - <releases> - <enabled>true</enabled> - </releases> - <snapshots> - <enabled>false</enabled> - </snapshots> - </pluginRepository> - <!-- - This is where we get unreleased Apache stuff from - --> - <pluginRepository> - <id>apache-snapshots</id> - <url>http://repository.apache.org/content/groups/snapshots/</url> - <releases> - <enabled>false</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </pluginRepository> - <!-- - This is where we get unreleased Flexmojos stuff from. - --> - <pluginRepository> - <id>sonatype-snapshots</id> - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> - <releases> - <enabled>false</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </pluginRepository> - <!-- - This is where third party dependencies for flexmojos come from. - --> - <pluginRepository> - <id>sonatype-flexmojos-cache</id> - <url>https://repository.sonatype.org/content/groups/flexgroup/</url> - <releases> - <enabled>true</enabled> - </releases> - <snapshots> - <enabled>true</enabled> - </snapshots> - </pluginRepository> - </pluginRepositories> - </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/native/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/pom.xml b/examples/native/pom.xml new file mode 100644 index 0000000..2d0d125 --- /dev/null +++ b/examples/native/pom.xml @@ -0,0 +1,39 @@ +<?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</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-native</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <modules> + </modules> + +</project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml new file mode 100644 index 0000000..7910787 --- /dev/null +++ b/examples/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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.flex.flexjs</groupId> + <artifactId>flex-asjs</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <modules> + <module>flexjs</module> + <module>native</module> + </modules> + + <build> + <sourceDirectory>src</sourceDirectory> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <targetPlayer>20.0</targetPlayer> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>compiler-jx</artifactId> + <version>0.7.0-SNAPSHOT</version> + </dependency> + </dependencies> + </plugin> + </plugins> + </pluginManagement> + </build> + + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7b295cee/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7dd2ada..878e232 100644 --- a/pom.xml +++ b/pom.xml @@ -34,6 +34,35 @@ <name>Apache Flex - ASJS</name> <description>The Apache Flex ASJS Project</description> + <scm> + <connection>scm:git://git.apache.org/flex-asjs.git</connection> + <developerConnection>scm:git://git.apache.org/flex-asjs.git</developerConnection> + <url>https://github.com/apache/flex-asjs</url> + </scm> + + <properties> + <java.version>1.6</java.version> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputencoding>UTF-8</project.reporting.outputencoding> + <maven.version>3.3.1</maven.version> + + <!-- URL of the ASF SonarQube server --> + <sonar.host.url>https://analysis.apache.org/</sonar.host.url> + + <flex.version>4.15.0</flex.version> + <flash.version>20.0</flash.version> + <air.version>20.0</air.version> + + <!-- Tell sonar where the coverage reports are located --> + <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco-ut.exec</sonar.jacoco.reportPath> + <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath> + </properties> + + <modules> + <module>examples</module> + <module>frameworks</module> + </modules> + <!-- Only configure the site distribution as the rest is handled by the apache parent --> <distributionManagement> <site> @@ -42,6 +71,28 @@ </site> </distributionManagement> + <issueManagement> + <system>Jira</system> + <url>https://issues.apache.org/jira/browse/FLEX</url> + </issueManagement> + + <mailingLists> + <mailingList> + <name>Apache Flex User List</name> + <subscribe>[email protected]</subscribe> + <unsubscribe>[email protected]</unsubscribe> + <post>[email protected]</post> + <archive>http://mail-archives.apache.org/mod_mbox/flex-users/</archive> + </mailingList> + <mailingList> + <name>Apache Flex Developer List</name> + <subscribe>[email protected]</subscribe> + <unsubscribe>[email protected]</unsubscribe> + <post>[email protected]</post> + <archive>http://mail-archives.apache.org/mod_mbox/flex-dev/</archive> + </mailingList> + </mailingLists> + <repositories> <repository> <id>apache-release</id> @@ -88,54 +139,4 @@ </pluginRepository> </pluginRepositories> - <mailingLists> - <mailingList> - <name>Apache Flex User List</name> - <subscribe>[email protected]</subscribe> - <unsubscribe>[email protected]</unsubscribe> - <post>[email protected]</post> - <archive>http://mail-archives.apache.org/mod_mbox/flex-users/</archive> - </mailingList> - <mailingList> - <name>Apache Flex Developer List</name> - <subscribe>[email protected]</subscribe> - <unsubscribe>[email protected]</unsubscribe> - <post>[email protected]</post> - <archive>http://mail-archives.apache.org/mod_mbox/flex-dev/</archive> - </mailingList> - </mailingLists> - - <issueManagement> - <system>Jira</system> - <url>https://issues.apache.org/jira/browse/FLEX</url> - </issueManagement> - - <scm> - <connection>scm:git://git.apache.org/flex-asjs.git</connection> - <developerConnection>scm:git://git.apache.org/flex-asjs.git</developerConnection> - <url>https://github.com/apache/flex-asjs</url> - </scm> - - <properties> - <java.version>1.6</java.version> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <project.reporting.outputencoding>UTF-8</project.reporting.outputencoding> - <maven.version>3.3.1</maven.version> - - <!-- URL of the ASF SonarQube server --> - <sonar.host.url>https://analysis.apache.org/</sonar.host.url> - - <flex.version>4.15.0</flex.version> - <flash.version>20.0</flash.version> - <air.version>20.0</air.version> - - <!-- Tell sonar where the coverage reports are located --> - <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco-ut.exec</sonar.jacoco.reportPath> - <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath> - </properties> - - <modules> - <module>frameworks/projects</module> - </modules> - </project> \ No newline at end of file
