- Changed the indenting of XML from 4 to 2.
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/5deb8544 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/5deb8544 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/5deb8544 Branch: refs/heads/develop Commit: 5deb8544e0bff8298295cd348ab872134cb7a1ac Parents: 818c8ca Author: Christofer Dutz <[email protected]> Authored: Thu Jun 16 13:37:13 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Thu Jun 16 13:37:13 2016 +0200 ---------------------------------------------------------------------- examples/flexjs/ChartExample/pom.xml | 72 +++--- examples/flexjs/CordovaCameraExample/pom.xml | 64 ++--- examples/flexjs/CreateJSExample/pom.xml | 64 ++--- examples/flexjs/DataBindingExample/pom.xml | 66 ++--- examples/flexjs/DataBindingExample_Flat/pom.xml | 72 +++--- examples/flexjs/DataBindingExample_as/pom.xml | 80 +++--- examples/flexjs/DataGridExample/pom.xml | 46 ++-- examples/flexjs/DesktopMap/pom.xml | 64 ++--- examples/flexjs/FlexJSStore/pom.xml | 96 ++++---- examples/flexjs/FlexJSStore_jquery/pom.xml | 108 ++++---- examples/flexjs/FlexWebsiteStatsViewer/pom.xml | 84 +++---- examples/flexjs/MapSearch/pom.xml | 64 ++--- examples/flexjs/MobileTrader/pom.xml | 84 +++---- examples/flexjs/StorageExample/pom.xml | 64 ++--- examples/flexjs/TodoListSampleApp/pom.xml | 46 ++-- examples/flexjs/TreeExample/pom.xml | 46 ++-- examples/flexjs/pom.xml | 106 ++++---- examples/native/pom.xml | 24 +- examples/pom.xml | 77 +++--- frameworks/pom.xml | 29 +-- frameworks/projects/Binding/pom.xml | 132 +++++----- frameworks/projects/Charts/pom.xml | 198 +++++++-------- frameworks/projects/Collections/pom.xml | 134 +++++----- frameworks/projects/Core/pom.xml | 140 +++++------ frameworks/projects/CreateJS/pom.xml | 240 +++++++++--------- frameworks/projects/DragDrop/pom.xml | 134 +++++----- frameworks/projects/Effects/pom.xml | 134 +++++----- frameworks/projects/Flat/pom.xml | 224 ++++++++--------- frameworks/projects/Formatters/pom.xml | 162 ++++++------ frameworks/projects/GoogleMaps/pom.xml | 158 ++++++------ frameworks/projects/Graphics/pom.xml | 134 +++++----- frameworks/projects/HTML/pom.xml | 244 +++++++++---------- frameworks/projects/HTML5/pom.xml | 170 ++++++------- frameworks/projects/JQuery/pom.xml | 184 +++++++------- frameworks/projects/Mobile/pom.xml | 206 ++++++++-------- frameworks/projects/Network/pom.xml | 134 +++++----- frameworks/projects/Reflection/pom.xml | 118 ++++----- frameworks/projects/Storage/pom.xml | 156 ++++++------ frameworks/projects/XML/pom.xml | 130 +++++----- frameworks/projects/pom.xml | 73 +++--- pom.xml | 243 +++++++++--------- 41 files changed, 2404 insertions(+), 2400 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/examples/flexjs/ChartExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/ChartExample/pom.xml b/examples/flexjs/ChartExample/pom.xml index 7afee47..b5b80e5 100644 --- a/examples/flexjs/ChartExample/pom.xml +++ b/examples/flexjs/ChartExample/pom.xml @@ -20,45 +20,45 @@ <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> + <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>ChartExample</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swf</packaging> + </parent> - <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>ChartExample.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <artifactId>ChartExample</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>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> + <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/5deb8544/examples/flexjs/CordovaCameraExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/CordovaCameraExample/pom.xml b/examples/flexjs/CordovaCameraExample/pom.xml index 5d845fb..b7266d7 100644 --- a/examples/flexjs/CordovaCameraExample/pom.xml +++ b/examples/flexjs/CordovaCameraExample/pom.xml @@ -20,39 +20,39 @@ <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> + <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>CordovaCameraExample</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>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> + </parent> + + <artifactId>CordovaCameraExample</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>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/5deb8544/examples/flexjs/CreateJSExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/CreateJSExample/pom.xml b/examples/flexjs/CreateJSExample/pom.xml index 907d055..c0d9964 100644 --- a/examples/flexjs/CreateJSExample/pom.xml +++ b/examples/flexjs/CreateJSExample/pom.xml @@ -20,39 +20,39 @@ <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> + <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>CreateJSExample</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>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> + </parent> + + <artifactId>CreateJSExample</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>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/5deb8544/examples/flexjs/DataBindingExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample/pom.xml b/examples/flexjs/DataBindingExample/pom.xml index 93b7a84..a279ef3 100644 --- a/examples/flexjs/DataBindingExample/pom.xml +++ b/examples/flexjs/DataBindingExample/pom.xml @@ -20,39 +20,39 @@ <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> + <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>DataBindingExample</artifactId> + <version>1.0.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> - </parent> - - <artifactId>DataBindingExample</artifactId> - <version>1.0.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>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> + <extensions>true</extensions> + <configuration> + <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/5deb8544/examples/flexjs/DataBindingExample_Flat/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample_Flat/pom.xml b/examples/flexjs/DataBindingExample_Flat/pom.xml index 31ff335..606e979 100644 --- a/examples/flexjs/DataBindingExample_Flat/pom.xml +++ b/examples/flexjs/DataBindingExample_Flat/pom.xml @@ -20,45 +20,45 @@ <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> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.examples</groupId> - <artifactId>examples-flexjs</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> - <artifactId>DataBindingExample_Flat</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>swf</packaging> + <artifactId>DataBindingExample_Flat</artifactId> + <version>1.0.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>DataBindingExample.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <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>DataBindingExample.mxml</mainClass> + </configuration> + </plugin> + </plugins> + </build> - <dependencies> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Flat</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> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Flat</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/5deb8544/examples/flexjs/DataBindingExample_as/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataBindingExample_as/pom.xml b/examples/flexjs/DataBindingExample_as/pom.xml index 8fca4e1..658ade4 100644 --- a/examples/flexjs/DataBindingExample_as/pom.xml +++ b/examples/flexjs/DataBindingExample_as/pom.xml @@ -20,49 +20,49 @@ <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> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.examples</groupId> - <artifactId>examples-flexjs</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> + <version>0.7.0-SNAPSHOT</version> + </parent> - <artifactId>DataBindingExample_as</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>swf</packaging> + <artifactId>DataBindingExample_as</artifactId> + <version>1.0.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>DataBindingExample.as</mainClass> - <defines> - <define> - <name>CONFIG::as_only</name> - <value>true</value> - </define> - <define> - <name>CONFIG::js_only</name> - <value>false</value> - </define> - </defines> - </configuration> - </plugin> - </plugins> - </build> + <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>DataBindingExample.as</mainClass> + <defines> + <define> + <name>CONFIG::as_only</name> + <value>true</value> + </define> + <define> + <name>CONFIG::js_only</name> + <value>false</value> + </define> + </defines> + </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> + <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/5deb8544/examples/flexjs/DataGridExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DataGridExample/pom.xml b/examples/flexjs/DataGridExample/pom.xml index 8778409..05061cb 100644 --- a/examples/flexjs/DataGridExample/pom.xml +++ b/examples/flexjs/DataGridExample/pom.xml @@ -20,30 +20,30 @@ <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> + <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>DataGridExample</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>DataGridExample.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + </parent> + + <artifactId>DataGridExample</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>DataGridExample.mxml</mainClass> + </configuration> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/examples/flexjs/DesktopMap/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DesktopMap/pom.xml b/examples/flexjs/DesktopMap/pom.xml index 24650bb..6886aff 100644 --- a/examples/flexjs/DesktopMap/pom.xml +++ b/examples/flexjs/DesktopMap/pom.xml @@ -20,39 +20,39 @@ <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> + <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>DesktopMap</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>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> + </parent> + + <artifactId>DesktopMap</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>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/5deb8544/examples/flexjs/FlexJSStore/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore/pom.xml b/examples/flexjs/FlexJSStore/pom.xml index 853a866..986c7d3 100644 --- a/examples/flexjs/FlexJSStore/pom.xml +++ b/examples/flexjs/FlexJSStore/pom.xml @@ -20,57 +20,57 @@ <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> + <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>FlexJSStore</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swf</packaging> + </parent> - <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>FlexJSStore.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <artifactId>FlexJSStore</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>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> + <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/5deb8544/examples/flexjs/FlexJSStore_jquery/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexJSStore_jquery/pom.xml b/examples/flexjs/FlexJSStore_jquery/pom.xml index a5b5197..da0695f 100644 --- a/examples/flexjs/FlexJSStore_jquery/pom.xml +++ b/examples/flexjs/FlexJSStore_jquery/pom.xml @@ -20,63 +20,63 @@ <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> + <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>FlexJSStore_jquery</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swf</packaging> + </parent> - <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>FlexJSStore.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <artifactId>FlexJSStore_jquery</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>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> + <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/5deb8544/examples/flexjs/FlexWebsiteStatsViewer/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/FlexWebsiteStatsViewer/pom.xml b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml index 97f1243..bf3f495 100644 --- a/examples/flexjs/FlexWebsiteStatsViewer/pom.xml +++ b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml @@ -20,51 +20,51 @@ <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> + <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>FlexWebsiteStatsViewer</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swf</packaging> + </parent> - <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>FlexWebsiteStatsViewer.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <artifactId>FlexWebsiteStatsViewer</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>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> + <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/5deb8544/examples/flexjs/MapSearch/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MapSearch/pom.xml b/examples/flexjs/MapSearch/pom.xml index 14bb1e6..deaf513 100644 --- a/examples/flexjs/MapSearch/pom.xml +++ b/examples/flexjs/MapSearch/pom.xml @@ -20,39 +20,39 @@ <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> + <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>MapSearch</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>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> + </parent> + + <artifactId>MapSearch</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>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/5deb8544/examples/flexjs/MobileTrader/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/MobileTrader/pom.xml b/examples/flexjs/MobileTrader/pom.xml index 734fb93..b75bbbd 100644 --- a/examples/flexjs/MobileTrader/pom.xml +++ b/examples/flexjs/MobileTrader/pom.xml @@ -20,51 +20,51 @@ <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> + <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>MobileTrader</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swf</packaging> + </parent> - <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>MobileTrader.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + <artifactId>MobileTrader</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>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> + <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/5deb8544/examples/flexjs/StorageExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/StorageExample/pom.xml b/examples/flexjs/StorageExample/pom.xml index ec50892..48c1fc0 100644 --- a/examples/flexjs/StorageExample/pom.xml +++ b/examples/flexjs/StorageExample/pom.xml @@ -20,39 +20,39 @@ <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> + <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>StorageExample</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>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> + </parent> + + <artifactId>StorageExample</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>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/5deb8544/examples/flexjs/TodoListSampleApp/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/TodoListSampleApp/pom.xml b/examples/flexjs/TodoListSampleApp/pom.xml index 35d24e5..adab693 100644 --- a/examples/flexjs/TodoListSampleApp/pom.xml +++ b/examples/flexjs/TodoListSampleApp/pom.xml @@ -20,30 +20,30 @@ <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> + <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>TodoListSampleApp</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>TodoListSampleApp.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + </parent> + + <artifactId>TodoListSampleApp</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>TodoListSampleApp.mxml</mainClass> + </configuration> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/examples/flexjs/TreeExample/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/TreeExample/pom.xml b/examples/flexjs/TreeExample/pom.xml index 61e4f0a..dea69e1 100644 --- a/examples/flexjs/TreeExample/pom.xml +++ b/examples/flexjs/TreeExample/pom.xml @@ -20,30 +20,30 @@ <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> + <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>TreeExample</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples-flexjs</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>TreeExample.mxml</mainClass> - </configuration> - </plugin> - </plugins> - </build> + </parent> + + <artifactId>TreeExample</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>TreeExample.mxml</mainClass> + </configuration> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/examples/flexjs/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/pom.xml b/examples/flexjs/pom.xml index 4314d66..553458a 100644 --- a/examples/flexjs/pom.xml +++ b/examples/flexjs/pom.xml @@ -20,62 +20,62 @@ <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> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.examples</groupId> - <artifactId>examples</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> - - <artifactId>examples-flexjs</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.examples</groupId> + <artifactId>examples</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>pom</packaging> + </parent> + + <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> - <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>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>TodoListSampleApp</module> - <module>TreeExample</module> - </modules> + <modules> + <module>ChartExample</module> + <module>CordovaCameraExample</module> + <module>CreateJSExample</module> + <module>DataBindingExample</module> + <module>DataBindingExample_as</module> + <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>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>TodoListSampleApp</module> + <module>TreeExample</module> + </modules> - <dependencies> - <dependency> - <groupId>com.adobe.flash.framework</groupId> - <artifactId>playerglobal</artifactId> - <version>20.0</version> - <type>swc</type> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>HTML</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>com.adobe.flash.framework</groupId> + <artifactId>playerglobal</artifactId> + <version>20.0</version> + <type>swc</type> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>HTML</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + </dependency> + </dependencies> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/examples/native/pom.xml ---------------------------------------------------------------------- diff --git a/examples/native/pom.xml b/examples/native/pom.xml index 2d0d125..b008673 100644 --- a/examples/native/pom.xml +++ b/examples/native/pom.xml @@ -20,20 +20,20 @@ <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> + <modelVersion>4.0.0</modelVersion> + <parent> <groupId>org.apache.flex.flexjs.examples</groupId> - <artifactId>examples-native</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>pom</packaging> + <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> + <modules> + </modules> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index 7910787..eebd4e9 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -17,48 +17,49 @@ 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> +<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> + <parent> + <groupId>org.apache.flex.flexjs</groupId> + <artifactId>flex-asjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>pom</packaging> + </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> + <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> + <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/5deb8544/frameworks/pom.xml ---------------------------------------------------------------------- diff --git a/frameworks/pom.xml b/frameworks/pom.xml index 01e513e..cfe077b 100644 --- a/frameworks/pom.xml +++ b/frameworks/pom.xml @@ -17,22 +17,23 @@ 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> +<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.framework</groupId> - <artifactId>frameworks</artifactId> + <parent> + <groupId>org.apache.flex.flexjs</groupId> + <artifactId>flex-asjs</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>pom</packaging> + </parent> + + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>frameworks</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>pom</packaging> - <modules> - <module>projects</module> - </modules> + <modules> + <module>projects</module> + </modules> </project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/frameworks/projects/Binding/pom.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/Binding/pom.xml b/frameworks/projects/Binding/pom.xml index 0af73b1..81501d8 100644 --- a/frameworks/projects/Binding/pom.xml +++ b/frameworks/projects/Binding/pom.xml @@ -19,76 +19,76 @@ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>projects</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> - - <artifactId>Binding</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>projects</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swc</packaging> + </parent> - <build> - <sourceDirectory>src/main/flex</sourceDirectory> - <plugins> - <plugin> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>flexjs-maven-plugin</artifactId> - <version>0.7.0-SNAPSHOT</version> - <extensions>true</extensions> - <configuration> - <namespaces> - <namespace> - <uri>library://ns.apache.org/flexjs/basic</uri> - <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> - </namespace> - </namespaces> - <includeSources>true</includeSources> - <includeFiles> - <include-file> - <name>js/out/*</name> - <path>generated-sources/flexjs/*</path> - </include-file> - </includeFiles> - </configuration> - <dependencies> - <dependency> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>compiler-jx</artifactId> - <version>0.7.0-SNAPSHOT</version> - </dependency> - </dependencies> - </plugin> - </plugins> - </build> + <artifactId>Binding</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>swc</packaging> - <dependencies> - <dependency> - <groupId>com.adobe.air.framework</groupId> - <artifactId>airglobal</artifactId> - <version>${air.version}</version> - <type>swc</type> - <scope>provided</scope> - </dependency> - - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <scope>external</scope> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <namespaces> + <namespace> + <uri>library://ns.apache.org/flexjs/basic</uri> + <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> + </namespace> + </namespaces> + <includeSources>true</includeSources> + <includeFiles> + <include-file> + <name>js/out/*</name> + <path>generated-sources/flexjs/*</path> + </include-file> + </includeFiles> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>compiler-jx</artifactId> <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <classifier>extern</classifier> - <scope>external</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>com.adobe.air.framework</groupId> + <artifactId>airglobal</artifactId> + <version>${air.version}</version> + <type>swc</type> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <scope>external</scope> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <classifier>extern</classifier> + <scope>external</scope> + </dependency> + </dependencies> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/frameworks/projects/Charts/pom.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/Charts/pom.xml b/frameworks/projects/Charts/pom.xml index e0aa9e5..c66af68 100644 --- a/frameworks/projects/Charts/pom.xml +++ b/frameworks/projects/Charts/pom.xml @@ -19,109 +19,109 @@ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>projects</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> - - <artifactId>Charts</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>projects</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swc</packaging> - - <build> - <sourceDirectory>src/main/flex</sourceDirectory> - <plugins> - <plugin> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>flexjs-maven-plugin</artifactId> - <version>0.7.0-SNAPSHOT</version> - <extensions>true</extensions> - <configuration> - <namespaces> - <namespace> - <uri>library://ns.apache.org/flexjs/basic</uri> - <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> - </namespace> - </namespaces> - <includeClasses> - <includeClass>ChartsClasses</includeClass> - </includeClasses> - <includeFiles> - <include-file> - <name>defaults.css</name> - <path>../src/main/resources/defaults.css</path> - </include-file> - <include-file> - <name>js/out/*</name> - <path>generated-sources/flexjs/*</path> - </include-file> - </includeFiles> - </configuration> - <dependencies> - <dependency> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>compiler-jx</artifactId> - <version>0.7.0-SNAPSHOT</version> - </dependency> - </dependencies> - </plugin> - </plugins> - </build> + </parent> - <dependencies> - <dependency> - <groupId>com.adobe.air.framework</groupId> - <artifactId>airglobal</artifactId> - <version>${air.version}</version> - <type>swc</type> - <scope>provided</scope> - </dependency> + <artifactId>Charts</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>swc</packaging> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <scope>external</scope> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <classifier>extern</classifier> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Graphics</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <scope>external</scope> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Graphics</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <classifier>extern</classifier> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>HTML</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <scope>external</scope> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>HTML</artifactId> + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <namespaces> + <namespace> + <uri>library://ns.apache.org/flexjs/basic</uri> + <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> + </namespace> + </namespaces> + <includeClasses> + <includeClass>ChartsClasses</includeClass> + </includeClasses> + <includeFiles> + <include-file> + <name>defaults.css</name> + <path>../src/main/resources/defaults.css</path> + </include-file> + <include-file> + <name>js/out/*</name> + <path>generated-sources/flexjs/*</path> + </include-file> + </includeFiles> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>compiler-jx</artifactId> <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <classifier>extern</classifier> - </dependency> - </dependencies> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>com.adobe.air.framework</groupId> + <artifactId>airglobal</artifactId> + <version>${air.version}</version> + <type>swc</type> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <scope>external</scope> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <classifier>extern</classifier> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Graphics</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <scope>external</scope> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Graphics</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <classifier>extern</classifier> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>HTML</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <scope>external</scope> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>HTML</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <classifier>extern</classifier> + </dependency> + </dependencies> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/frameworks/projects/Collections/pom.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/Collections/pom.xml b/frameworks/projects/Collections/pom.xml index 6546e92..f7177ec 100644 --- a/frameworks/projects/Collections/pom.xml +++ b/frameworks/projects/Collections/pom.xml @@ -19,77 +19,77 @@ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>projects</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> - - <artifactId>Collections</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>projects</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swc</packaging> + </parent> - <build> - <sourceDirectory>src/main/flex</sourceDirectory> - <plugins> - <plugin> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>flexjs-maven-plugin</artifactId> - <version>0.7.0-SNAPSHOT</version> - <extensions>true</extensions> - <configuration> - <namespaces> - <namespace> - <uri>library://ns.apache.org/flexjs/basic</uri> - <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> - </namespace> - </namespaces> - <includeClasses> - <includeClass>CollectionsClasses</includeClass> - </includeClasses> - <includeFiles> - <include-file> - <name>js/out/*</name> - <path>generated-sources/flexjs/*</path> - </include-file> - </includeFiles> - </configuration> - <dependencies> - <dependency> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>compiler-jx</artifactId> - <version>0.7.0-SNAPSHOT</version> - </dependency> - </dependencies> - </plugin> - </plugins> - </build> + <artifactId>Collections</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>swc</packaging> - <dependencies> - <dependency> - <groupId>com.adobe.air.framework</groupId> - <artifactId>airglobal</artifactId> - <version>${air.version}</version> - <type>swc</type> - <scope>provided</scope> - </dependency> - - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> - <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <scope>external</scope> - </dependency> - <dependency> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>Core</artifactId> + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <namespaces> + <namespace> + <uri>library://ns.apache.org/flexjs/basic</uri> + <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> + </namespace> + </namespaces> + <includeClasses> + <includeClass>CollectionsClasses</includeClass> + </includeClasses> + <includeFiles> + <include-file> + <name>js/out/*</name> + <path>generated-sources/flexjs/*</path> + </include-file> + </includeFiles> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>compiler-jx</artifactId> <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <classifier>extern</classifier> - </dependency> - </dependencies> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>com.adobe.air.framework</groupId> + <artifactId>airglobal</artifactId> + <version>${air.version}</version> + <type>swc</type> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <scope>external</scope> + </dependency> + <dependency> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <classifier>extern</classifier> + </dependency> + </dependencies> </project> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5deb8544/frameworks/projects/Core/pom.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/pom.xml b/frameworks/projects/Core/pom.xml index dd4372f..722316a 100644 --- a/frameworks/projects/Core/pom.xml +++ b/frameworks/projects/Core/pom.xml @@ -19,80 +19,80 @@ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.flex.flexjs.framework</groupId> - <artifactId>projects</artifactId> - <version>0.7.0-SNAPSHOT</version> - </parent> - - <artifactId>Core</artifactId> + <parent> + <groupId>org.apache.flex.flexjs.framework</groupId> + <artifactId>projects</artifactId> <version>0.7.0-SNAPSHOT</version> - <packaging>swc</packaging> + </parent> - <build> - <sourceDirectory>src/main/flex</sourceDirectory> - <plugins> - <plugin> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>flexjs-maven-plugin</artifactId> - <version>0.7.0-SNAPSHOT</version> - <extensions>true</extensions> - <configuration> - <namespaces> - <namespace> - <uri>library://ns.apache.org/flexjs/basic</uri> - <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> - </namespace> - </namespaces> - <includeClasses> - <includeClass>CoreClasses</includeClass> - </includeClasses> - <includeFiles> - <include-file> - <name>js/out/*</name> - <path>generated-sources/flexjs/*</path> - </include-file> - </includeFiles> - <skipExtern>false</skipExtern> - </configuration> - <dependencies> - <dependency> - <groupId>org.apache.flex.flexjs.compiler</groupId> - <artifactId>compiler-jx</artifactId> - <version>0.7.0-SNAPSHOT</version> - </dependency> - </dependencies> - </plugin> - </plugins> - </build> + <artifactId>Core</artifactId> + <version>0.7.0-SNAPSHOT</version> + <packaging>swc</packaging> - <dependencies> - <dependency> - <groupId>com.adobe.air.framework</groupId> - <artifactId>airglobal</artifactId> - <version>${air.version}</version> - <type>swc</type> - <scope>provided</scope> - </dependency> - - <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> - <dependency> - <groupId>org.apache.flex.flexjs.externs</groupId> - <artifactId>flexjs-externs-gcl</artifactId> + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>flexjs-maven-plugin</artifactId> + <version>0.7.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <namespaces> + <namespace> + <uri>library://ns.apache.org/flexjs/basic</uri> + <manifest>${project.basedir}/src/main/resources/basic-manifest.xml</manifest> + </namespace> + </namespaces> + <includeClasses> + <includeClass>CoreClasses</includeClass> + </includeClasses> + <includeFiles> + <include-file> + <name>js/out/*</name> + <path>generated-sources/flexjs/*</path> + </include-file> + </includeFiles> + <skipExtern>false</skipExtern> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.flex.flexjs.compiler</groupId> + <artifactId>compiler-jx</artifactId> <version>0.7.0-SNAPSHOT</version> - <type>swc</type> - <classifier>extern</classifier> - <scope>external</scope> - </dependency> - </dependencies> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>com.adobe.air.framework</groupId> + <artifactId>airglobal</artifactId> + <version>${air.version}</version> + <type>swc</type> + <scope>provided</scope> + </dependency> + + <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> + <dependency> + <groupId>org.apache.flex.flexjs.externs</groupId> + <artifactId>flexjs-externs-gcl</artifactId> + <version>0.7.0-SNAPSHOT</version> + <type>swc</type> + <classifier>extern</classifier> + <scope>external</scope> + </dependency> + </dependencies> </project>
