You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ha...@apache.org on 2017/06/27 17:13:10 UTC

[01/12] git commit: [flex-asjs] [refs/heads/tlf] - Make ON/OFF non numeric formatting in Table more PAYG (This changes fix bug where nonNumeric in some more complex application was not applyed correctly): - Move applying numeric formatting for TableColum

Repository: flex-asjs
Updated Branches:
  refs/heads/tlf e9e039d9a -> c2f7a2d8f


Make ON/OFF non numeric formatting in Table more PAYG (This changes fix bug where nonNumeric in some more complex application was not applyed correctly):
- Move applying numeric formatting for TableColumn and TableCell to bead TableNumericEnable.
- Remove property nonNumeric from TableCell, TableColumn and TableRowItemRenderer (this property was unnecessary here)
- Make as default TableCell and TableColumn non numeric
- Create two aliases mxml for TableNumericEnable - TableNumericColumnEnable and TableNumericCellEnable


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/30b7aefd
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/30b7aefd
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/30b7aefd

Branch: refs/heads/tlf
Commit: 30b7aefd43f057205dcc73630804a60436af4fb7
Parents: a89f0ec
Author: piotrz <pi...@apache.org>
Authored: Mon Jun 19 22:24:36 2017 +0200
Committer: piotrz <pi...@apache.org>
Committed: Mon Jun 19 22:24:36 2017 +0200

----------------------------------------------------------------------
 .../main/flex/org/apache/flex/mdl/TableCell.as  | 27 +------
 .../flex/org/apache/flex/mdl/TableColumn.as     | 29 +-------
 .../apache/flex/mdl/beads/TableNumericEnable.as | 77 ++++++++++++++++++++
 .../mdl/itemRenderers/TableRowItemRenderer.as   | 27 +------
 .../src/main/resources/mdl-manifest.xml         |  2 +
 5 files changed, 83 insertions(+), 79 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/30b7aefd/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableCell.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableCell.as b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableCell.as
index a58548c..b4abd7f 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableCell.as
+++ b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableCell.as
@@ -88,37 +88,12 @@ package org.apache.flex.mdl
         override protected function createElement():WrappedHTMLElement
         {
 			element = document.createElement('td') as WrappedHTMLElement;
+            element.classList.add("mdl-data-table__cell--non-numeric");
 
             positioner = element;
             element.flexjs_wrapper = this;
 
             return element;
         }
-
-		private var _nonNumeric:Boolean;
-        /**
-         *  Activate "mdl-data-table__cell--non-numeric" class selector, for use in table td item.
-         *  Applies text formatting to data cell. Numeric is the default
-		 *  Optional; goes on both table header and table data cells
-		 *
-		 *  @langversion 3.0
-         *  @playerversion Flash 10.2
-         *  @playerversion AIR 2.6
-         *  @productversion FlexJS 0.8
-         */
-        public function get nonNumeric():Boolean
-        {
-            return _nonNumeric;
-        }
-        public function set nonNumeric(value:Boolean):void
-        {
-            _nonNumeric = value;
-
-            COMPILE::JS
-            {
-                element.classList.toggle("mdl-data-table__cell--non-numeric", _nonNumeric);
-				typeNames = element.className;
-            }
-        }
 	}
 }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/30b7aefd/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableColumn.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableColumn.as b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableColumn.as
index b5164fb..2e67c28 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableColumn.as
+++ b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/TableColumn.as
@@ -91,39 +91,14 @@ package org.apache.flex.mdl
         override protected function createElement():WrappedHTMLElement
         {
 			element = document.createElement('th') as WrappedHTMLElement;
+            element.classList.add("mdl-data-table__cell--non-numeric");
 
             positioner = element;
             element.flexjs_wrapper = this;
 
             return element;
         }
-
-        private var _nonNumeric:Boolean;
-        /**
-         *  Activate "mdl-data-table__cell--non-numeric" class selector, for use in table td item.
-         *  Applies text formatting to data cell
-		 *  Optional; goes on both table header and table data cells
-		 *
-		 *  @langversion 3.0
-         *  @playerversion Flash 10.2
-         *  @playerversion AIR 2.6
-         *  @productversion FlexJS 0.8
-         */
-        public function get nonNumeric():Boolean
-        {
-            return _nonNumeric;
-        }
-        public function set nonNumeric(value:Boolean):void
-        {
-            _nonNumeric = value;
-
-            COMPILE::JS
-            {
-                element.classList.toggle("mdl-data-table__cell--non-numeric", _nonNumeric);
-                typeNames = element.className;
-            }
-        }
-
+		
         protected var _ascending:Boolean;
         /**
 		 *  A boolean flag to activate "mdl-data-table__header--sorted-ascending" effect selector.

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/30b7aefd/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/beads/TableNumericEnable.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/beads/TableNumericEnable.as b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/beads/TableNumericEnable.as
new file mode 100644
index 0000000..608e58d
--- /dev/null
+++ b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/beads/TableNumericEnable.as
@@ -0,0 +1,77 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.flex.mdl.beads
+{
+    import org.apache.flex.core.IBead;
+    import org.apache.flex.core.IStrand;
+    import org.apache.flex.core.UIBase;
+    import org.apache.flex.mdl.TableCell;
+    import org.apache.flex.mdl.TableColumn;
+
+    /**
+     *  TableNumericEnable bead applies numeric formatting to header (TableColumn) or data cell (TableCell)
+     *  It removes class "mdl-data-table__cell--non-numeric" from strand (content of column will be align to the right)
+     *
+     *  @langversion 3.0
+     *  @playerversion Flash 10.2
+     *  @playerversion AIR 2.6
+     *  @productversion FlexJS 0.9
+     */
+    public class TableNumericEnable implements IBead
+    {
+        private var _strand:IStrand;
+        private var host:UIBase;
+
+        /**
+         * @copy org.apache.flex.core.IBead#strand
+         *
+         * @flexjsignorecoercion HTMLElement
+         *
+         * @param value
+         *
+         * @langversion 3.0
+         * @playerversion Flash 10.2
+         * @playerversion AIR 2.6
+         * @productversion FlexJS 0.8
+         */
+        public function set strand(value:IStrand):void
+        {
+            _strand = value;
+            host = _strand as UIBase;
+
+            COMPILE::JS
+            {
+                if (isTableHostValid())
+                {
+                    var element:HTMLElement = host.element as HTMLElement;
+                    element.classList.remove("mdl-data-table__cell--non-numeric");
+                }
+                else
+                {
+                    throw new Error("Host component must be an MDL TableColumn or TableCell.");
+                }
+            }
+        }
+
+        private function isTableHostValid():Boolean
+        {
+            return host is TableCell || host is TableColumn;
+        }
+    }
+}

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/30b7aefd/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/itemRenderers/TableRowItemRenderer.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/itemRenderers/TableRowItemRenderer.as b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/itemRenderers/TableRowItemRenderer.as
index 9f26836..3d6265b 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/itemRenderers/TableRowItemRenderer.as
+++ b/frameworks/projects/MaterialDesignLite/src/main/flex/org/apache/flex/mdl/itemRenderers/TableRowItemRenderer.as
@@ -112,6 +112,7 @@ package org.apache.flex.mdl.itemRenderers
 			{
                 positioner = document.createElement('tr') as WrappedHTMLElement;
                 element = document.createElement('td') as WrappedHTMLElement;
+                element.classList.add("mdl-data-table__cell--non-numeric");
 
                 positioner.appendChild(element);
 
@@ -129,31 +130,5 @@ package org.apache.flex.mdl.itemRenderers
                 return element;
             }
         }
-
-		private var _nonNumeric:Boolean;
-        /**
-         * Activate "mdl-data-table__cell--non-numeric" class selector, for use in table td item.
-         * Applies text formatting to data cell. Numeric is the default
-		 * Optional; goes on both table header and table data cells 
-		 * 
-		 * @langversion 3.0
-         * @playerversion Flash 10.2
-         * @playerversion AIR 2.6
-         * @productversion FlexJS 0.8
-         */
-        public function get nonNumeric():Boolean
-        {
-            return _nonNumeric;
-        }
-        public function set nonNumeric(value:Boolean):void
-        {
-            _nonNumeric = value;
-
-            COMPILE::JS
-            {
-                element.classList.toggle("mdl-data-table__cell--non-numeric", _nonNumeric);
-				typeNames = element.className;
-            }
-        }
 	}
 }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/30b7aefd/frameworks/projects/MaterialDesignLite/src/main/resources/mdl-manifest.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/src/main/resources/mdl-manifest.xml b/frameworks/projects/MaterialDesignLite/src/main/resources/mdl-manifest.xml
index ebd7b00..c74d257 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/resources/mdl-manifest.xml
+++ b/frameworks/projects/MaterialDesignLite/src/main/resources/mdl-manifest.xml
@@ -62,6 +62,8 @@
     <component id="TableRowItemRenderer" class="org.apache.flex.mdl.itemRenderers.TableRowItemRenderer"/>
     <component id="TableCell" class="org.apache.flex.mdl.TableCell"/>
     <component id="TableView" class="org.apache.flex.mdl.beads.views.TableView"/>
+    <component id="TableNumericCellEnable" class="org.apache.flex.mdl.beads.TableNumericEnable"/>
+    <component id="TableNumericColumnEnable" class="org.apache.flex.mdl.beads.TableNumericEnable"/>
     <component id="Dialog" class="org.apache.flex.mdl.Dialog"/>
     <component id="DialogTitle" class="org.apache.flex.mdl.DialogTitle"/>
     <component id="DialogContent" class="org.apache.flex.mdl.DialogContent"/>


[02/12] git commit: [flex-asjs] [refs/heads/tlf] - Update MDLExample with new changes related to ON/OFF numeric formatting in Table

Posted by ha...@apache.org.
Update MDLExample with new changes related to ON/OFF numeric formatting in Table


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/2a02f944
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/2a02f944
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/2a02f944

Branch: refs/heads/tlf
Commit: 2a02f944c3d806bb877a01335998b1dc632757f4
Parents: 30b7aef
Author: piotrz <pi...@apache.org>
Authored: Mon Jun 19 22:25:24 2017 +0200
Committer: piotrz <pi...@apache.org>
Committed: Mon Jun 19 22:25:24 2017 +0200

----------------------------------------------------------------------
 .../flexjs/MDLExample/src/main/flex/Tables.mxml | 51 +++++++++++++++-----
 .../CustomTableRowItemRenderer.mxml             | 15 ++++--
 .../TableRowItemRendererWithIcons.mxml          | 13 +++--
 3 files changed, 61 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2a02f944/examples/flexjs/MDLExample/src/main/flex/Tables.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MDLExample/src/main/flex/Tables.mxml b/examples/flexjs/MDLExample/src/main/flex/Tables.mxml
index d788cd0..1f29d9a 100644
--- a/examples/flexjs/MDLExample/src/main/flex/Tables.mxml
+++ b/examples/flexjs/MDLExample/src/main/flex/Tables.mxml
@@ -29,11 +29,19 @@ limitations under the License.
 
     <mdl:Grid width="450" className="center-items">
 
-        <mdl:Table shadow="2" selectable="true" className="customTableRowItemRenderer">
+       <mdl:Table shadow="2" selectable="true" className="customTableRowItemRenderer">
             <mdl:columns>
-                <mdl:TableColumn headerText="Material" nonNumeric="true"/>
-                <mdl:TableColumn headerText="Quantity"/>
-                <mdl:TableColumn headerText="Unit price"/>
+                <mdl:TableColumn headerText="Material"/>
+                <mdl:TableColumn headerText="Quantity">
+                    <mdl:beads>
+                        <mdl:TableNumericColumnEnable />
+                    </mdl:beads>
+                </mdl:TableColumn>
+                <mdl:TableColumn headerText="Unit price">
+                    <mdl:beads>
+                        <mdl:TableNumericColumnEnable />
+                    </mdl:beads>
+                </mdl:TableColumn>
             </mdl:columns>
             <mdl:beads>
                 <js:ConstantBinding
@@ -50,9 +58,17 @@ limitations under the License.
 
             <mdl:Table className="customTableRowItemRenderer" width="100%">
                 <mdl:columns>
-                    <mdl:TableColumn headerText="Material" nonNumeric="true"/>
-                    <mdl:TableColumn headerText="Quantity"/>
-                    <mdl:TableColumn headerText="Unit price"/>
+                    <mdl:TableColumn headerText="Material"/>
+                    <mdl:TableColumn headerText="Quantity">
+                        <mdl:beads>
+                            <mdl:TableNumericColumnEnable />
+                        </mdl:beads>
+                    </mdl:TableColumn>
+                    <mdl:TableColumn headerText="Unit price">
+                        <mdl:beads>
+                            <mdl:TableNumericColumnEnable />
+                        </mdl:beads>
+                    </mdl:TableColumn>
                 </mdl:columns>
                 <mdl:beads>
                     <js:ConstantBinding
@@ -70,11 +86,24 @@ limitations under the License.
 
         <mdl:Table shadow="8" className="tableRowItemRendererWithIcons">
             <mdl:columns>
-                <mdl:TableColumn headerText="Material" nonNumeric="true"/>
-                <mdl:TableColumn headerText="Quantity"/>
-                <mdl:TableColumn headerText="Unit price"/>
-                <mdl:TableColumn headerText="Mood"/>
+                <mdl:TableColumn headerText="Material"/>
+                <mdl:TableColumn headerText="Quantity">
+                    <mdl:beads>
+                        <mdl:TableNumericColumnEnable />
+                    </mdl:beads>
+                </mdl:TableColumn>
+                <mdl:TableColumn headerText="Unit price">
+                    <mdl:beads>
+                        <mdl:TableNumericColumnEnable />
+                    </mdl:beads>
+                </mdl:TableColumn>
+                <mdl:TableColumn headerText="Mood">
+                    <mdl:beads>
+                        <mdl:TableNumericColumnEnable />
+                    </mdl:beads>
+                </mdl:TableColumn>
             </mdl:columns>
+
             <mdl:beads>
                 <js:ConstantBinding
                     sourceID="model"

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2a02f944/examples/flexjs/MDLExample/src/main/flex/itemRenderers/CustomTableRowItemRenderer.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MDLExample/src/main/flex/itemRenderers/CustomTableRowItemRenderer.mxml b/examples/flexjs/MDLExample/src/main/flex/itemRenderers/CustomTableRowItemRenderer.mxml
index d7d00f6..afcbc8c 100644
--- a/examples/flexjs/MDLExample/src/main/flex/itemRenderers/CustomTableRowItemRenderer.mxml
+++ b/examples/flexjs/MDLExample/src/main/flex/itemRenderers/CustomTableRowItemRenderer.mxml
@@ -38,9 +38,16 @@ limitations under the License.
         <js:ItemRendererDataBinding />
     </mdl:beads>
     
-    <mdl:TableCell text="{material.materialName}" nonNumeric="true"/>
-    <mdl:TableCell text="{material.quantity}"/>
-    <mdl:TableCell text="{material.unitPrice}"/>
-    
+    <mdl:TableCell text="{material.materialName}"/>
+    <mdl:TableCell text="{material.quantity}">
+        <mdl:beads>
+            <mdl:TableNumericCellEnable />
+        </mdl:beads>
+    </mdl:TableCell>
+    <mdl:TableCell text="{material.unitPrice}">
+        <mdl:beads>
+            <mdl:TableNumericCellEnable />
+        </mdl:beads>
+    </mdl:TableCell>
 </mdl:TableRowItemRenderer>
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2a02f944/examples/flexjs/MDLExample/src/main/flex/itemRenderers/TableRowItemRendererWithIcons.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MDLExample/src/main/flex/itemRenderers/TableRowItemRendererWithIcons.mxml b/examples/flexjs/MDLExample/src/main/flex/itemRenderers/TableRowItemRendererWithIcons.mxml
index 000132d..0322566 100644
--- a/examples/flexjs/MDLExample/src/main/flex/itemRenderers/TableRowItemRendererWithIcons.mxml
+++ b/examples/flexjs/MDLExample/src/main/flex/itemRenderers/TableRowItemRendererWithIcons.mxml
@@ -39,11 +39,18 @@ limitations under the License.
     <mdl:beads>
         <js:ItemRendererDataBinding />
     </mdl:beads>
-    
-    <mdl:TableCell text="{material.materialName}" nonNumeric="true"/>
-    <mdl:TableCell text="{material.quantity}"/>
+
+    <mdl:TableCell text="{material.materialName}" />
+    <mdl:TableCell text="{material.quantity}">
+        <mdl:beads>
+            <mdl:TableNumericCellEnable />
+        </mdl:beads>
+    </mdl:TableCell>
     <mdl:TableCell text="{material.unitPrice}"/>
     <mdl:TableCell>
+        <mdl:beads>
+            <mdl:TableNumericCellEnable />
+        </mdl:beads>
         <mdl:Button icon="true" colored="true">
             <mdl:materialIcon>
                 <mdl:MaterialIcon text="{MaterialIconType.MOOD}"/>


[08/12] git commit: [flex-asjs] [refs/heads/tlf] - fix up merge issue

Posted by ha...@apache.org.
fix up merge issue


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/0dfb04b8
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/0dfb04b8
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/0dfb04b8

Branch: refs/heads/tlf
Commit: 0dfb04b806f597cc05b19527b4b0060be17c05d0
Parents: 1d68cd8
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 26 11:11:08 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 26 11:11:08 2017 -0700

----------------------------------------------------------------------
 .../Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as  | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0dfb04b8/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
index 7f21708..f5d71ca 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
@@ -709,7 +709,6 @@ package org.apache.flex.core
 				cssString += "}";
 				ss.insertRule(cssString, ss.cssRules.length);
 			}
->>>>>>> release0.8.0
         }
 		
 		COMPILE::JS


[03/12] git commit: [flex-asjs] [refs/heads/tlf] - adjust email

Posted by ha...@apache.org.
adjust email


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/5beb7018
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/5beb7018
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/5beb7018

Branch: refs/heads/tlf
Commit: 5beb70188668fb8e0930b4574807d5b55c47d5f4
Parents: 1656e37
Author: Alex Harui <ah...@apache.org>
Authored: Sun Jun 25 23:22:20 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Jun 25 23:22:20 2017 -0700

----------------------------------------------------------------------
 releasecandidate.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5beb7018/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/releasecandidate.xml b/releasecandidate.xml
index df59541..95b47a3 100644
--- a/releasecandidate.xml
+++ b/releasecandidate.xml
@@ -498,7 +498,7 @@ http://www.apache.org/dyn/closer.cgi?path=/flex/installer/${latest.installer}/bi
 \n\
 Please vote to approve this release:\n\
 +1 Approve the release\n\
--1 Veto the release (please provide specific comments to why)\n\
+-1 Disapprove the release (please provide specific comments to why)\n\
 \n\
 This vote will be open for 72 hours or until a result can be called.\n\
 \n\
@@ -524,7 +524,8 @@ package and signature files, unzipping, etc, you can instead:\n\
 1) create an empty folder,\n\
 2) download into that folder this file:\n\
 https://dist.apache.org/repos/dist/dev/flex/flexjs/${release.version}/rc${rc}/ApproveFlexJS.xml\n\
-3) run the script: ant -e -f ApproveFlexJS.xml -Drelease.version=${release.version} -Drc=${rc}\n\
+3) run the script:\n\
+   ant -e -f ApproveFlexJS.xml -Drelease.version=${release.version} -Drc=${rc}\n\
 \n\
 You are not required to use this script, and more testing of the packages\n\
 and build results are always encouraged.\n\


[11/12] git commit: [flex-asjs] [refs/heads/tlf] - update nightly to 0.9.0

Posted by ha...@apache.org.
update nightly to 0.9.0


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/911cf929
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/911cf929
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/911cf929

Branch: refs/heads/tlf
Commit: 911cf929a7afe5b0e81455ead919b1f16dbab1fc
Parents: 9929255
Author: Alex Harui <ah...@apache.org>
Authored: Tue Jun 27 08:14:45 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Jun 27 08:14:51 2017 -0700

----------------------------------------------------------------------
 nightly.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/911cf929/nightly.properties
----------------------------------------------------------------------
diff --git a/nightly.properties b/nightly.properties
index 9e29735..5dc7065 100644
--- a/nightly.properties
+++ b/nightly.properties
@@ -23,7 +23,7 @@ nightly = true
 falcon.server.url = http://apacheflexbuild.cloudapp.net:8080
 falcon.md5.server.url = http://apacheflexbuild.cloudapp.net:8080
 falcon.folder = job/flex-falcon%20release%20branch/lastSuccessfulBuild/artifact/out
-falcon.version = 0.8.0
+falcon.version = 0.9.0
 # path to local build
 # falcon.server.url = file://Users/xxx/git/flex/master
 # falcon.md5.server.url = file://Users/xxx/git/flex/master


[10/12] git commit: [flex-asjs] [refs/heads/tlf] - fix up another merge issue

Posted by ha...@apache.org.
fix up another merge issue


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/99292556
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/99292556
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/99292556

Branch: refs/heads/tlf
Commit: 99292556522a74ace8a9a16038aa0887fe53dbc7
Parents: 313ee84
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 26 11:27:15 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 26 11:27:15 2017 -0700

----------------------------------------------------------------------
 examples/express/DataBindingExample/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/99292556/examples/express/DataBindingExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/express/DataBindingExample/pom.xml b/examples/express/DataBindingExample/pom.xml
index 3f8e466..6bd108e 100644
--- a/examples/express/DataBindingExample/pom.xml
+++ b/examples/express/DataBindingExample/pom.xml
@@ -60,6 +60,7 @@
       <artifactId>Network</artifactId>
       <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
+      <classifier>swf</classifier>
     </dependency>
     <dependency>
         <groupId>org.apache.flex.flexjs.framework</groupId>


[06/12] git commit: [flex-asjs] [refs/heads/tlf] - update to next version SNAPSHOT

Posted by ha...@apache.org.
update to next version SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/78f704c1
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/78f704c1
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/78f704c1

Branch: refs/heads/tlf
Commit: 78f704c16e0bb33417c5f8d806f6ed1ffc61b4d5
Parents: 03c53b0
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 26 09:57:34 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 26 09:57:34 2017 -0700

----------------------------------------------------------------------
 .../flexjs-simple-application-archetype/pom.xml |   4 +-
 .../pom.xml                                     |   4 +-
 .../pom.xml                                     |   4 +-
 .../flexjs-simple-library-archetype/pom.xml     |   4 +-
 .../flexjs-simple-typedef-archetype/pom.xml     |   4 +-
 archetypes/pom.xml                              |   4 +-
 distribution/jars/compc/pom.xml                 |   4 +-
 distribution/jars/falcon-asc/pom.xml            |   4 +-
 distribution/jars/falcon-compc/pom.xml          |   4 +-
 distribution/jars/falcon-mxmlc/pom.xml          |   4 +-
 distribution/jars/falcon-optimizer/pom.xml      |   4 +-
 distribution/jars/falcon-swfdump/pom.xml        |   4 +-
 distribution/jars/mxmlc/pom.xml                 |   4 +-
 distribution/pom.xml                            | 110 +++++++++----------
 examples/examples-integrationtests/pom.xml      |  54 ++++-----
 examples/examples-tests/pom.xml                 |   4 +-
 examples/express/DataBindingExample/pom.xml     |   8 +-
 examples/express/pom.xml                        |  18 +--
 examples/flexjs/ASDoc/pom.xml                   |   8 +-
 examples/flexjs/ChartExample/pom.xml            |   8 +-
 examples/flexjs/CordovaCameraExample/pom.xml    |   8 +-
 examples/flexjs/CreateJSExample/pom.xml         |   8 +-
 examples/flexjs/DataBindingExample/pom.xml      |   8 +-
 examples/flexjs/DataBindingExample_Flat/pom.xml |  14 +--
 examples/flexjs/DataBindingExample_as/pom.xml   |   8 +-
 examples/flexjs/DataGridExample/pom.xml         |   4 +-
 examples/flexjs/DateControlsExample/pom.xml     |   8 +-
 examples/flexjs/DesktopMap/pom.xml              |   8 +-
 examples/flexjs/FlexJSStore/pom.xml             |  20 ++--
 examples/flexjs/FlexJSStore_jquery/pom.xml      |  24 ++--
 examples/flexjs/FlexTeamPage_MDL/pom.xml        |  16 +--
 examples/flexjs/FlexWebsiteStatsViewer/pom.xml  |  12 +-
 examples/flexjs/HelloWorld/pom.xml              |   4 +-
 examples/flexjs/ListExample/pom.xml             |   8 +-
 examples/flexjs/MDLDynamicTabsExample/pom.xml   |   8 +-
 examples/flexjs/MDLExample/pom.xml              |   8 +-
 examples/flexjs/MapSearch/pom.xml               |   8 +-
 examples/flexjs/MobileMap/pom.xml               |  12 +-
 examples/flexjs/MobileStocks/pom.xml            |  24 ++--
 examples/flexjs/MobileTrader/pom.xml            |  16 +--
 examples/flexjs/StorageExample/pom.xml          |  12 +-
 examples/flexjs/StyleExample/pom.xml            |   8 +-
 examples/flexjs/TeamPage/pom.xml                |   8 +-
 examples/flexjs/TodoListSampleApp/pom.xml       |   4 +-
 examples/flexjs/TreeExample/pom.xml             |   4 +-
 examples/flexjs/pom.xml                         |  30 ++---
 examples/native/ButtonExample/pom.xml           |   4 +-
 examples/native/USStatesMap/pom.xml             |   6 +-
 examples/native/pom.xml                         |   4 +-
 examples/pom.xml                                |   4 +-
 frameworks/fontsrc/pom.xml                      |   4 +-
 frameworks/pom.xml                              |   4 +-
 frameworks/projects/Basic/pom.xml               |  20 ++--
 frameworks/projects/Binding/pom.xml             |   8 +-
 frameworks/projects/Charts/pom.xml              |  24 ++--
 frameworks/projects/Collections/pom.xml         |   8 +-
 frameworks/projects/Core/pom.xml                |   4 +-
 frameworks/projects/CreateJS/pom.xml            |  20 ++--
 frameworks/projects/DragDrop/pom.xml            |   8 +-
 frameworks/projects/Effects/pom.xml             |  12 +-
 frameworks/projects/Express/pom.xml             |  24 ++--
 frameworks/projects/Flat/pom.xml                |  22 ++--
 frameworks/projects/FontAwesome/pom.xml         |  24 ++--
 frameworks/projects/Formatters/pom.xml          |  12 +-
 frameworks/projects/GoogleMaps/pom.xml          |  12 +-
 frameworks/projects/Graphics/pom.xml            |   8 +-
 frameworks/projects/HTML/pom.xml                |  24 ++--
 frameworks/projects/HTML5/pom.xml               |  12 +-
 frameworks/projects/JQuery/pom.xml              |  12 +-
 frameworks/projects/Language/pom.xml            |   4 +-
 frameworks/projects/MaterialDesignLite/pom.xml  |  28 ++---
 frameworks/projects/Mobile/pom.xml              |  16 +--
 frameworks/projects/Network/pom.xml             |   8 +-
 frameworks/projects/Reflection/pom.xml          |   8 +-
 frameworks/projects/Storage/pom.xml             |   8 +-
 frameworks/projects/XML/pom.xml                 |  12 +-
 frameworks/projects/pom.xml                     |   4 +-
 pom.xml                                         |   2 +-
 testsuite/pom.xml                               |   4 +-
 79 files changed, 464 insertions(+), 464 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/archetypes/flexjs-simple-application-archetype/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/flexjs-simple-application-archetype/pom.xml b/archetypes/flexjs-simple-application-archetype/pom.xml
index 20ec151..86ec045 100644
--- a/archetypes/flexjs-simple-application-archetype/pom.xml
+++ b/archetypes/flexjs-simple-application-archetype/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-maven-archetypes</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-simple-application-archetype</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>jar</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Application</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/archetypes/flexjs-simple-application-pure-js-archetype/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/flexjs-simple-application-pure-js-archetype/pom.xml b/archetypes/flexjs-simple-application-pure-js-archetype/pom.xml
index 6a41047..e6f113e 100644
--- a/archetypes/flexjs-simple-application-pure-js-archetype/pom.xml
+++ b/archetypes/flexjs-simple-application-pure-js-archetype/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-maven-archetypes</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-simple-application-pure-js-archetype</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>jar</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Pure-JS Application</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/archetypes/flexjs-simple-application-pure-swf-archetype/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/flexjs-simple-application-pure-swf-archetype/pom.xml b/archetypes/flexjs-simple-application-pure-swf-archetype/pom.xml
index 3716512..191457c 100644
--- a/archetypes/flexjs-simple-application-pure-swf-archetype/pom.xml
+++ b/archetypes/flexjs-simple-application-pure-swf-archetype/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-maven-archetypes</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-simple-application-pure-swf-archetype</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>jar</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Pure-SWF Application</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/archetypes/flexjs-simple-library-archetype/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/flexjs-simple-library-archetype/pom.xml b/archetypes/flexjs-simple-library-archetype/pom.xml
index 08aea05..ce45b2d 100644
--- a/archetypes/flexjs-simple-library-archetype/pom.xml
+++ b/archetypes/flexjs-simple-library-archetype/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-maven-archetypes</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-simple-library-archetype</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>maven-archetype</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Library</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/archetypes/flexjs-simple-typedef-archetype/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/flexjs-simple-typedef-archetype/pom.xml b/archetypes/flexjs-simple-typedef-archetype/pom.xml
index 098ff65..f3869e5 100644
--- a/archetypes/flexjs-simple-typedef-archetype/pom.xml
+++ b/archetypes/flexjs-simple-typedef-archetype/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-maven-archetypes</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-simple-typedef-archetype</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>maven-archetype</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Archetypes: Simple FlexJS Typedef Library</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/archetypes/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 6ec1b3e..3e91cb1 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-maven-archetypes</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Archetypes</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/compc/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/compc/pom.xml b/distribution/jars/compc/pom.xml
index d41280b..4b49836 100644
--- a/distribution/jars/compc/pom.xml
+++ b/distribution/jars/compc/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>compc</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/falcon-asc/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/falcon-asc/pom.xml b/distribution/jars/falcon-asc/pom.xml
index 5fcce9d..727faf8 100644
--- a/distribution/jars/falcon-asc/pom.xml
+++ b/distribution/jars/falcon-asc/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>falcon-asc</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/falcon-compc/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/falcon-compc/pom.xml b/distribution/jars/falcon-compc/pom.xml
index 24c2cef..603a837 100644
--- a/distribution/jars/falcon-compc/pom.xml
+++ b/distribution/jars/falcon-compc/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>falcon-compc</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/falcon-mxmlc/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/falcon-mxmlc/pom.xml b/distribution/jars/falcon-mxmlc/pom.xml
index 00ad722..41d9821 100644
--- a/distribution/jars/falcon-mxmlc/pom.xml
+++ b/distribution/jars/falcon-mxmlc/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>falcon-mxmlc</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/falcon-optimizer/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/falcon-optimizer/pom.xml b/distribution/jars/falcon-optimizer/pom.xml
index 153fd73..35cf882 100644
--- a/distribution/jars/falcon-optimizer/pom.xml
+++ b/distribution/jars/falcon-optimizer/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>falcon-optimizer</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/falcon-swfdump/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/falcon-swfdump/pom.xml b/distribution/jars/falcon-swfdump/pom.xml
index 3f29b73..0fb8e2c 100644
--- a/distribution/jars/falcon-swfdump/pom.xml
+++ b/distribution/jars/falcon-swfdump/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>falcon-swfdump</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/jars/mxmlc/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/jars/mxmlc/pom.xml b/distribution/jars/mxmlc/pom.xml
index 01d3f6b..9caa332 100644
--- a/distribution/jars/mxmlc/pom.xml
+++ b/distribution/jars/mxmlc/pom.xml
@@ -24,13 +24,13 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
     <relativePath>../../../pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
   <artifactId>mxmlc</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 78597b5..461121b 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>distribution</artifactId>
@@ -81,139 +81,139 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>CreateJS</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>DragDrop</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Express</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Flat</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>FontAwesome</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML5</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>JQuery</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Reflection</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Storage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>XML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
     </dependency>
 
@@ -221,161 +221,161 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>CreateJS</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>DragDrop</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Express</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Flat</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
  	  <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>FontAwesome</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML5</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>JQuery</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Reflection</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Storage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>XML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -448,7 +448,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Fonts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
 
@@ -463,37 +463,37 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>compc</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>mxmlc</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>falcon-asc</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>falcon-compc</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>falcon-mxmlc</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>falcon-optimizer</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework.distribution</groupId>
       <artifactId>falcon-swfdump</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/examples-integrationtests/pom.xml
----------------------------------------------------------------------
diff --git a/examples/examples-integrationtests/pom.xml b/examples/examples-integrationtests/pom.xml
index f2bb38e..9637458 100644
--- a/examples/examples-integrationtests/pom.xml
+++ b/examples/examples-integrationtests/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>examples-integrationtests</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>jar</packaging>
 
   <name>Apache Flex - FlexJS: Examples: Integrationtests</name>
@@ -246,151 +246,151 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>ASDoc</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>ChartExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>CreateJSExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>DataBindingExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>DataBindingExample_as</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>DataBindingExample_Flat</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>DataGridExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>DateControlsExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>DesktopMap</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>FlexJSStore</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>FlexJSStore_jquery</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>FlexTeamPage_MDL</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>FlexWebsiteStatsViewer</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>HelloWorld</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>ListExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>MapSearch</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>MDLExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>MobileMap</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>MobileStocks</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>MobileTrader</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>StorageExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>StyleExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>TeamPage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>TodoListSampleApp</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>TreeExample</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/examples-tests/pom.xml
----------------------------------------------------------------------
diff --git a/examples/examples-tests/pom.xml b/examples/examples-tests/pom.xml
index 12b58c6..693df71 100644
--- a/examples/examples-tests/pom.xml
+++ b/examples/examples-tests/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>examples-tests</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: Examples: Example-Tests</name>
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/express/DataBindingExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/express/DataBindingExample/pom.xml b/examples/express/DataBindingExample/pom.xml
index 654fb9a..7418613 100644
--- a/examples/express/DataBindingExample/pom.xml
+++ b/examples/express/DataBindingExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-express</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DataBindingExample-Express</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: Express: DataBindingExample</name>
@@ -60,14 +60,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <classifier>swf</classifier>
       <type>swc</type>
     </dependency>
     <dependency>
         <groupId>org.apache.flex.flexjs.framework</groupId>
         <artifactId>Network</artifactId>
-        <version>0.8.0</version>
+        <version>0.9.0-SNAPSHOT</version>
         <type>swc</type>
         <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/express/pom.xml
----------------------------------------------------------------------
diff --git a/examples/express/pom.xml b/examples/express/pom.xml
index 2ff8430..4f4d878 100644
--- a/examples/express/pom.xml
+++ b/examples/express/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>examples-express</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Examples: Express</name>
@@ -73,42 +73,42 @@
   <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Express</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Express</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -117,7 +117,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>examples-tests</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/ASDoc/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/ASDoc/pom.xml b/examples/flexjs/ASDoc/pom.xml
index 417a8bb..6044b1b 100644
--- a/examples/flexjs/ASDoc/pom.xml
+++ b/examples/flexjs/ASDoc/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>ASDoc</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: ASDoc</name>
@@ -52,14 +52,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/ChartExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/ChartExample/pom.xml b/examples/flexjs/ChartExample/pom.xml
index 7f4b23c..df93c61 100644
--- a/examples/flexjs/ChartExample/pom.xml
+++ b/examples/flexjs/ChartExample/pom.xml
@@ -31,11 +31,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>ChartExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: ChartExample</name>
@@ -65,14 +65,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/CordovaCameraExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/CordovaCameraExample/pom.xml b/examples/flexjs/CordovaCameraExample/pom.xml
index 43e86ea..e2db141 100644
--- a/examples/flexjs/CordovaCameraExample/pom.xml
+++ b/examples/flexjs/CordovaCameraExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>CordovaCameraExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: CordovaCameraExample</name>
@@ -63,14 +63,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/CreateJSExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/CreateJSExample/pom.xml b/examples/flexjs/CreateJSExample/pom.xml
index a59287d..e8b0008 100644
--- a/examples/flexjs/CreateJSExample/pom.xml
+++ b/examples/flexjs/CreateJSExample/pom.xml
@@ -31,11 +31,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>CreateJSExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: CreateJSExample</name>
@@ -65,14 +65,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>CreateJS</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>CreateJS</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/DataBindingExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataBindingExample/pom.xml b/examples/flexjs/DataBindingExample/pom.xml
index f94ff9e..9935fd3 100644
--- a/examples/flexjs/DataBindingExample/pom.xml
+++ b/examples/flexjs/DataBindingExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DataBindingExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: DataBindingExample</name>
@@ -59,14 +59,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/DataBindingExample_Flat/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataBindingExample_Flat/pom.xml b/examples/flexjs/DataBindingExample_Flat/pom.xml
index dd6db2b..f71f16a 100644
--- a/examples/flexjs/DataBindingExample_Flat/pom.xml
+++ b/examples/flexjs/DataBindingExample_Flat/pom.xml
@@ -35,11 +35,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DataBindingExample_Flat</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: DataBindingExample_Flat</name>
@@ -109,28 +109,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Flat</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Flat</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
@@ -139,7 +139,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Fonts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>war</type>
       <scope>runtime</scope>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/DataBindingExample_as/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataBindingExample_as/pom.xml b/examples/flexjs/DataBindingExample_as/pom.xml
index 469b2cd..5ca1aad 100644
--- a/examples/flexjs/DataBindingExample_as/pom.xml
+++ b/examples/flexjs/DataBindingExample_as/pom.xml
@@ -41,11 +41,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DataBindingExample_as</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: DataBindingExample_as</name>
@@ -86,14 +86,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/DataGridExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataGridExample/pom.xml b/examples/flexjs/DataGridExample/pom.xml
index 7ff5b69..b2a225c 100644
--- a/examples/flexjs/DataGridExample/pom.xml
+++ b/examples/flexjs/DataGridExample/pom.xml
@@ -29,11 +29,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DataGridExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: DataGridExample</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/DateControlsExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DateControlsExample/pom.xml b/examples/flexjs/DateControlsExample/pom.xml
index bd698e4..b77a315 100644
--- a/examples/flexjs/DateControlsExample/pom.xml
+++ b/examples/flexjs/DateControlsExample/pom.xml
@@ -29,11 +29,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DateControlsExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: DateControlsExample</name>
@@ -62,14 +62,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/DesktopMap/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DesktopMap/pom.xml b/examples/flexjs/DesktopMap/pom.xml
index 33d53ea..d4d5ace 100644
--- a/examples/flexjs/DesktopMap/pom.xml
+++ b/examples/flexjs/DesktopMap/pom.xml
@@ -31,11 +31,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DesktopMap</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: DesktopMap</name>
@@ -66,14 +66,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/FlexJSStore/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexJSStore/pom.xml b/examples/flexjs/FlexJSStore/pom.xml
index 7d625eb..19f0b04 100644
--- a/examples/flexjs/FlexJSStore/pom.xml
+++ b/examples/flexjs/FlexJSStore/pom.xml
@@ -38,11 +38,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>FlexJSStore</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: FlexJSStore</name>
@@ -86,56 +86,56 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>DragDrop</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>DragDrop</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/FlexJSStore_jquery/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexJSStore_jquery/pom.xml b/examples/flexjs/FlexJSStore_jquery/pom.xml
index 52c5da3..c08647b 100644
--- a/examples/flexjs/FlexJSStore_jquery/pom.xml
+++ b/examples/flexjs/FlexJSStore_jquery/pom.xml
@@ -39,11 +39,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>FlexJSStore_jquery</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: FlexJSStore_jquery</name>
@@ -74,70 +74,70 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>DragDrop</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>DragDrop</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Formatters</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>JQuery</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>JQuery</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/FlexTeamPage_MDL/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexTeamPage_MDL/pom.xml b/examples/flexjs/FlexTeamPage_MDL/pom.xml
index d57b5f1..f212838 100644
--- a/examples/flexjs/FlexTeamPage_MDL/pom.xml
+++ b/examples/flexjs/FlexTeamPage_MDL/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>FlexTeamPage_MDL</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: FlexTeamPage_MDL</name>
@@ -66,42 +66,42 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>FontAwesome</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>FontAwesome</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/FlexWebsiteStatsViewer/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexWebsiteStatsViewer/pom.xml b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml
index 75dc3b1..927ac19 100644
--- a/examples/flexjs/FlexWebsiteStatsViewer/pom.xml
+++ b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>FlexWebsiteStatsViewer</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: FlexWebsiteStatsViewer</name>
@@ -60,28 +60,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/HelloWorld/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/HelloWorld/pom.xml b/examples/flexjs/HelloWorld/pom.xml
index 674294d..cc6a789 100644
--- a/examples/flexjs/HelloWorld/pom.xml
+++ b/examples/flexjs/HelloWorld/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>HelloWorld</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: HelloWorld</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/ListExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/ListExample/pom.xml b/examples/flexjs/ListExample/pom.xml
index b03ce5b..250f6e7 100644
--- a/examples/flexjs/ListExample/pom.xml
+++ b/examples/flexjs/ListExample/pom.xml
@@ -29,11 +29,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>ListExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: ListExample</name>
@@ -63,14 +63,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/MDLDynamicTabsExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MDLDynamicTabsExample/pom.xml b/examples/flexjs/MDLDynamicTabsExample/pom.xml
index aea8a6b..12ac364 100644
--- a/examples/flexjs/MDLDynamicTabsExample/pom.xml
+++ b/examples/flexjs/MDLDynamicTabsExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MDLDynamicTabsExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>MDLDynamicTabsExample</name>
@@ -70,14 +70,14 @@
 	<dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/MDLExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MDLExample/pom.xml b/examples/flexjs/MDLExample/pom.xml
index 9717af0..6349eec 100644
--- a/examples/flexjs/MDLExample/pom.xml
+++ b/examples/flexjs/MDLExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MDLExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: MDLExample</name>
@@ -66,14 +66,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>MaterialDesignLite</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/MapSearch/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MapSearch/pom.xml b/examples/flexjs/MapSearch/pom.xml
index 56efc24..842c2c5 100644
--- a/examples/flexjs/MapSearch/pom.xml
+++ b/examples/flexjs/MapSearch/pom.xml
@@ -35,11 +35,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MapSearch</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: MapSearch</name>
@@ -70,14 +70,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/MobileMap/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MobileMap/pom.xml b/examples/flexjs/MobileMap/pom.xml
index 93950b7..7bf3f09 100644
--- a/examples/flexjs/MobileMap/pom.xml
+++ b/examples/flexjs/MobileMap/pom.xml
@@ -29,11 +29,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MobileMap</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: MobileMap</name>
@@ -68,28 +68,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>GoogleMaps</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/MobileStocks/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MobileStocks/pom.xml b/examples/flexjs/MobileStocks/pom.xml
index c7741d4..812dd9e 100644
--- a/examples/flexjs/MobileStocks/pom.xml
+++ b/examples/flexjs/MobileStocks/pom.xml
@@ -31,11 +31,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MobileStocks</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: MobileStocks</name>
@@ -70,70 +70,70 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Storage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Storage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>XML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>XML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/MobileTrader/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/MobileTrader/pom.xml b/examples/flexjs/MobileTrader/pom.xml
index 26e6545..bb1eb33 100644
--- a/examples/flexjs/MobileTrader/pom.xml
+++ b/examples/flexjs/MobileTrader/pom.xml
@@ -31,11 +31,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MobileTrader</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: MobileTrader</name>
@@ -70,42 +70,42 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Charts</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/StorageExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/StorageExample/pom.xml b/examples/flexjs/StorageExample/pom.xml
index edd6919..458546d 100644
--- a/examples/flexjs/StorageExample/pom.xml
+++ b/examples/flexjs/StorageExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>StorageExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: StorageExample</name>
@@ -63,28 +63,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Storage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Storage</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Mobile</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/StyleExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/StyleExample/pom.xml b/examples/flexjs/StyleExample/pom.xml
index cfff0e5..016ff8c 100644
--- a/examples/flexjs/StyleExample/pom.xml
+++ b/examples/flexjs/StyleExample/pom.xml
@@ -36,11 +36,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>StyleExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: StyleExample</name>
@@ -71,14 +71,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/TeamPage/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/TeamPage/pom.xml b/examples/flexjs/TeamPage/pom.xml
index 8044388..854790d 100644
--- a/examples/flexjs/TeamPage/pom.xml
+++ b/examples/flexjs/TeamPage/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>TeamPage</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: TeamPage</name>
@@ -62,14 +62,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Network</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/TodoListSampleApp/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/TodoListSampleApp/pom.xml b/examples/flexjs/TodoListSampleApp/pom.xml
index ffc82fa..9b667c1 100644
--- a/examples/flexjs/TodoListSampleApp/pom.xml
+++ b/examples/flexjs/TodoListSampleApp/pom.xml
@@ -31,11 +31,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>TodoListSampleApp</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: TodoListSampleApp</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/TreeExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/TreeExample/pom.xml b/examples/flexjs/TreeExample/pom.xml
index 7381cda..02735da 100644
--- a/examples/flexjs/TreeExample/pom.xml
+++ b/examples/flexjs/TreeExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-flexjs</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>TreeExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS: TreeExample</name>


[09/12] git commit: [flex-asjs] [refs/heads/tlf] - update version

Posted by ha...@apache.org.
update version


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/313ee84d
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/313ee84d
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/313ee84d

Branch: refs/heads/tlf
Commit: 313ee84d0a57c6f3be4278439659de1cd5b59334
Parents: 0dfb04b
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 26 11:12:53 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 26 11:12:53 2017 -0700

----------------------------------------------------------------------
 build.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/313ee84d/build.properties
----------------------------------------------------------------------
diff --git a/build.properties b/build.properties
index 424ed97..2dff939 100644
--- a/build.properties
+++ b/build.properties
@@ -21,7 +21,7 @@
 release.name = Apache Flex (FlexJS)
 # this is the version that appears in the flex-sdk-description <description> tag
 # and on the package name.  This is the publicly known version of FlexJS
-release.version = 0.8.0
+release.version = 0.9.0
 
 # fb.release.version must start with 4 in order for FB to accept it.
 # intellij seems to want it to be at least 4.6 in order to not use certain


[07/12] git commit: [flex-asjs] [refs/heads/tlf] - Merge branch 'release0.8.0' into develop

Posted by ha...@apache.org.
Merge branch 'release0.8.0' into develop


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/1d68cd8b
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1d68cd8b
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1d68cd8b

Branch: refs/heads/tlf
Commit: 1d68cd8b78d700f795a6c11b7b8c654c626eccc9
Parents: 2a02f94 78f704c
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 26 10:50:21 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 26 10:50:21 2017 -0700

----------------------------------------------------------------------
 ApproveFlexJS.xml                               |  77 +-
 RELEASE_NOTES                                   |  20 +-
 .../main/resources/archetype-resources/pom.xml  |   3 +-
 .../main/resources/archetype-resources/pom.xml  |   2 +-
 .../pom.xml                                     |   6 +-
 .../main/resources/archetype-resources/pom.xml  |   2 +-
 build.xml                                       |  43 +-
 cordova-build.xml                               |   8 +-
 distribution/pom.xml                            |  17 +-
 distribution/src/main/assembly/component.xml    |  19 +-
 .../frameworks/air-config-template.xml          | 850 +++++++++---------
 .../main/resources/frameworks/air-config.xml    | 851 ++++++++++---------
 .../resources/frameworks/airmobile-config.xml   | 568 ++++++++++---
 .../frameworks/createjs-config-template.xml     |  13 +-
 .../resources/frameworks/createjs-config.xml    |  21 +-
 .../frameworks/flex-config-template.xml         | 748 ++++++++--------
 .../main/resources/frameworks/flex-config.xml   | 736 +++++++++-------
 .../frameworks/jquery-config-template.xml       |  14 +-
 .../main/resources/frameworks/jquery-config.xml |  22 +-
 .../resources/frameworks/js-config-template.xml |  11 +-
 .../src/main/resources/frameworks/js-config.xml |  19 +-
 .../frameworks/node-config-template.xml         | 543 ++++++------
 .../main/resources/frameworks/node-config.xml   | 543 ++++++------
 examples/build.xml                              |  40 +-
 examples/build_example.xml                      | 167 +++-
 examples/express/DataBindingExample/build.xml   |  10 +
 examples/express/DataBindingExample/pom.xml     |   1 +
 .../src/main/flex/DataBindingExample.mxml       |  11 +-
 .../src/main/flex/controllers/MyController.as   |   6 +-
 examples/express/pom.xml                        |  16 +
 examples/flexjs/ASDoc/build.xml                 |  18 +-
 examples/flexjs/ASDoc/pom.xml                   |   1 +
 .../ASDoc/src/main/flex/ASDocMainView.mxml      |  83 +-
 .../ASDoc/src/main/flex/DetailRenderer.mxml     |   2 +-
 examples/flexjs/ChartExample/build.xml          |  13 +-
 examples/flexjs/ChartExample/pom.xml            |   1 +
 .../CordovaCameraExample-app.xml                |   2 +-
 examples/flexjs/CordovaCameraExample/README.txt |  25 +-
 examples/flexjs/CordovaCameraExample/build.xml  |  67 +-
 examples/flexjs/CordovaCameraExample/pom.xml    |   1 +
 .../src/main/flex/CordovaCameraExample.mxml     |  11 +-
 .../src/main/flex/MyInitialView.mxml            |  36 +-
 examples/flexjs/CreateJSExample/build.xml       |  13 +-
 examples/flexjs/CreateJSExample/pom.xml         |   1 +
 .../src/main/config/compile-app-config.xml      |   4 +-
 examples/flexjs/DataBindingExample/build.xml    |  13 +-
 examples/flexjs/DataBindingExample/pom.xml      |   1 +
 .../src/main/flex/DataBindingExample.mxml       |   7 +
 .../DataBindingExampleWithFlexLayout/build.xml  |  14 +-
 .../flex/DataBindingExampleWithFlexLayout.mxml  |   7 +
 .../src/main/flex/MyInitialView.mxml            |   4 +
 .../flexjs/DataBindingExample_Flat/build.xml    |  31 +-
 examples/flexjs/DataBindingExample_Flat/pom.xml |   2 +
 .../src/main/flex/DataBindingExample.mxml       |   7 +
 .../src/main/flex/MyInitialView.mxml            |  10 +-
 .../src/main/flex/controllers/MyController.as   |   4 +-
 examples/flexjs/DataBindingExample_as/build.xml |  14 +-
 examples/flexjs/DataBindingExample_as/pom.xml   |   1 +
 .../src/main/flex/DataBindingExample.as         | 173 ++--
 .../src/main/flex/MyInitialView.as              |   3 +-
 .../src/main/flex/controllers/MyController.as   |   4 +-
 examples/flexjs/DataGridExample/build.xml       |  11 +
 .../src/main/flex/MyInitialView.mxml            |   2 +-
 examples/flexjs/DateControlsExample/build.xml   |  13 +-
 examples/flexjs/DateControlsExample/pom.xml     |   1 +
 examples/flexjs/DesktopMap/build.xml            |  27 +-
 examples/flexjs/DesktopMap/pom.xml              |   1 +
 .../src/main/config/compile-app-config.xml      |   4 +-
 .../DesktopMap/src/main/flex/DesktopMap.mxml    |   6 +-
 .../DesktopMap/src/main/flex/MyInitialView.mxml |   4 +-
 examples/flexjs/FlexJSStore/build.xml           |  14 +-
 examples/flexjs/FlexJSStore/pom.xml             |   4 +
 .../FlexJSStore/src/main/flex/SupportView.mxml  |   2 +-
 .../flexjs/FlexJSStore/src/main/flex/main.css   |   1 +
 .../src/main/flex/productsView/ProductCart.mxml |   2 +-
 .../flex/productsView/ProductCatalogPanel.mxml  |   6 +-
 .../productsView/ProductCatalogThumbnail.mxml   |   4 +-
 examples/flexjs/FlexJSStore_jquery/build.xml    |  14 +-
 examples/flexjs/FlexJSStore_jquery/pom.xml      |   5 +
 .../src/main/config/compile-app-config.xml      |   4 +-
 .../src/main/flex/FlexJSStore.mxml              |   8 +-
 .../src/main/flex/HomeView.mxml                 | 194 +++--
 .../src/main/flex/ProductsView.mxml             |   1 -
 .../src/main/flex/SupportView.mxml              |   4 +-
 .../FlexJSStore_jquery/src/main/flex/main.css   |   1 +
 .../src/main/flex/productsView/ProductCart.mxml |   2 +-
 .../flex/productsView/ProductCatalogPanel.mxml  |   6 +-
 .../productsView/ProductCatalogThumbnail.mxml   |   4 +-
 .../flex/samples/flexstore/ProductThumbEvent.as |  19 +-
 examples/flexjs/FlexTeamPage_MDL/build.xml      |  11 +-
 examples/flexjs/FlexTeamPage_MDL/pom.xml        |   5 +-
 .../flexjs/FlexWebsiteStatsViewer/build.xml     |  14 +-
 examples/flexjs/FlexWebsiteStatsViewer/pom.xml  |   2 +
 examples/flexjs/HelloWorld/build.xml            |  13 +-
 examples/flexjs/ListExample/build.xml           |  13 +-
 examples/flexjs/ListExample/pom.xml             |   3 +-
 .../src/main/flex/MyInitialView.mxml            |  23 +-
 .../main/flex/simple/IRFactoryForArrayData.as   |   2 +-
 examples/flexjs/MDLBlogExample/build.xml        |  25 +-
 examples/flexjs/MDLBlogExample/pom.xml          |   3 +-
 .../src/main/config/compile-app-config.xml      |  27 +
 examples/flexjs/MDLDynamicTabsExample/pom.xml   |   3 +-
 examples/flexjs/MDLExample/build.xml            |  11 +-
 examples/flexjs/MDLExample/pom.xml              |   3 +-
 .../src/main/config/compile-app-config.xml      |   1 +
 examples/flexjs/MapSearch/MapSearch-app.xml     |   4 +-
 examples/flexjs/MapSearch/build.xml             |  18 +-
 examples/flexjs/MapSearch/pom.xml               |   1 +
 .../src/main/config/compile-app-config.xml      |   4 +-
 .../MapSearch/src/main/flex/MapSearch.mxml      |   9 +-
 .../MapSearch/src/main/flex/MyInitialView.mxml  |  16 +-
 .../flexjs/MapSearch/src/main/flex/NoLayout.as  |  26 -
 examples/flexjs/MobileMap/MobileMap-app.xml     | 252 ++++++
 examples/flexjs/MobileMap/README.txt            |   6 +-
 examples/flexjs/MobileMap/build.xml             |  20 +-
 examples/flexjs/MobileMap/pom.xml               |   2 +
 .../src/main/config/compile-app-config.xml      |   4 +-
 .../MobileMap/src/main/flex/MobileMap.mxml      |   2 +-
 examples/flexjs/MobileStocks/build.xml          |  36 +-
 examples/flexjs/MobileStocks/pom.xml            |   5 +
 .../src/main/config/compile-app-config.xml      |  26 +
 .../src/main/flex/models/ProductsModel.as       |   5 +-
 .../src/main/flex/views/LaunchView.mxml         |  10 +-
 examples/flexjs/MobileTrader/build.xml          |  28 +-
 examples/flexjs/MobileTrader/pom.xml            |   3 +
 examples/flexjs/StorageExample/build.xml        |  33 +-
 examples/flexjs/StorageExample/pom.xml          |  16 +-
 .../src/main/config/compile-app-config.xml      |   4 +-
 .../src/main/flex/MyInitialView.mxml            |  40 +-
 .../src/main/flex/StorageExample.mxml           |  19 +-
 examples/flexjs/StyleExample/build.xml          |  14 +-
 examples/flexjs/StyleExample/pom.xml            |   1 +
 .../src/main/flex/MyInitialView.mxml            |  19 +-
 examples/flexjs/TableExample/build.xml          |  11 +
 examples/flexjs/TeamPage/build.xml              |  11 +
 examples/flexjs/TeamPage/pom.xml                |   8 +-
 examples/flexjs/TodoListSampleApp/build.xml     |  12 +
 .../sample/todo/renderers/TodoItemRenderer.mxml |   5 +-
 .../flex/sample/todo/views/TodoListView.mxml    |   3 +-
 examples/flexjs/TreeExample/build.xml           |  11 +
 examples/flexjs/pom.xml                         |   6 +
 examples/native/ButtonExample/build.xml         |  13 +-
 .../ButtonExample/src/main/resources/index.html |  30 +
 examples/native/USStatesMap/build.xml           |  13 +-
 .../USStatesMap/src/main/resources/index.html   |  30 +
 frameworks/air-config-template.xml              |   8 +-
 frameworks/air-config.xml                       |   8 +-
 frameworks/flex-config-template.xml             |   8 +-
 frameworks/flex-config.xml                      |   8 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/BindingJS/.actionScriptProperties  |   2 +-
 .../js/FlexJS/projects/BindingJS/.project       |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/ChartsJS/.actionScriptProperties   |  10 +-
 frameworks/js/FlexJS/projects/ChartsJS/.project |  31 +-
 .../src/main/config/compile-js-config.xml       |   8 +
 .../CollectionsJS/.actionScriptProperties       |   2 +-
 .../js/FlexJS/projects/CollectionsJS/.project   |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/CoreJS/.actionScriptProperties     |   2 +-
 frameworks/js/FlexJS/projects/CoreJS/.project   |  26 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/CreateJSJS/.actionScriptProperties |   7 +-
 .../js/FlexJS/projects/CreateJSJS/.project      |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/DragDropJS/.actionScriptProperties |   2 +-
 .../js/FlexJS/projects/DragDropJS/.project      |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/EffectsJS/.actionScriptProperties  |  10 +-
 .../js/FlexJS/projects/EffectsJS/.project       |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/FlatJS/.actionScriptProperties     |   5 +-
 frameworks/js/FlexJS/projects/FlatJS/.project   |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../src/main/config/compile-js-config.xml       |   7 +
 .../FormattersJS/.actionScriptProperties        |   2 +-
 .../js/FlexJS/projects/FormattersJS/.project    |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../GoogleMapsJS/.actionScriptProperties        |  10 +-
 .../js/FlexJS/projects/GoogleMapsJS/.project    |  31 +-
 .../src/main/config/compile-js-config.xml       |   9 +-
 .../projects/GraphicsJS/.actionScriptProperties |   2 +-
 .../js/FlexJS/projects/GraphicsJS/.project      |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/HTML5JS/.actionScriptProperties    |  12 +-
 frameworks/js/FlexJS/projects/HTML5JS/.project  |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/HTMLJS/.actionScriptProperties     |  10 +-
 frameworks/js/FlexJS/projects/HTMLJS/.project   |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/JQueryJS/.actionScriptProperties   |  11 +-
 frameworks/js/FlexJS/projects/JQueryJS/.project |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../src/main/config/compile-js-config.xml       |   7 +
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/MobileJS/.actionScriptProperties   |  11 +-
 frameworks/js/FlexJS/projects/MobileJS/.project |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../projects/NetworkJS/.actionScriptProperties  |   2 +-
 .../js/FlexJS/projects/NetworkJS/.project       |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../ReflectionJS/.actionScriptProperties        |   2 +-
 .../js/FlexJS/projects/ReflectionJS/.project    |  31 +-
 .../src/main/config/compile-js-config.xml       |   7 +
 .../src/main/config/compile-js-config.xml       |   9 +-
 .../src/main/config/compile-js-config.xml       |   9 +-
 .../XMLJS/src/main/config/compile-js-config.xml |   7 +
 frameworks/projects/Basic/build.xml             |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../Basic/src/main/flex/BasicClasses.as         |   5 +-
 .../flex/org/apache/flex/core/AirApplication.as | 115 +++
 .../flex/org/apache/flex/core/ContainerBase.as  |   4 +
 .../main/flex/org/apache/flex/core/GroupBase.as |  22 +
 .../flex/org/apache/flex/core/LayoutBase.as     |  55 ++
 .../main/flex/org/apache/flex/core/UIBase.as    |  12 +
 .../src/main/flex/org/apache/flex/core/View.as  |   2 +-
 .../main/flex/org/apache/flex/html/CheckBox.as  |   1 +
 .../flex/org/apache/flex/html/ControlBar.as     |   1 +
 .../src/main/flex/org/apache/flex/html/List.as  |   2 +
 .../flex/org/apache/flex/html/MultilineLabel.as |   1 +
 .../flex/org/apache/flex/html/NumericStepper.as |  47 +-
 .../main/flex/org/apache/flex/html/Slider.as    |   1 +
 .../main/flex/org/apache/flex/html/Spinner.as   |   2 +-
 .../main/flex/org/apache/flex/html/ToolTip.as   |  16 +
 .../flex/html/beads/AccordionCollapseBead.as    |   5 +-
 .../html/beads/AccordionItemRendererView.as     |  31 +-
 .../org/apache/flex/html/beads/AccordionView.as |  62 +-
 .../org/apache/flex/html/beads/ComboBoxView.as  |   2 +-
 .../org/apache/flex/html/beads/ContainerView.as |   4 +-
 .../flex/html/beads/DataGridPercentageView.as   |  10 +-
 .../org/apache/flex/html/beads/DataGridView.as  |  10 +-
 .../apache/flex/html/beads/DateChooserView.as   |  16 +-
 .../org/apache/flex/html/beads/DateFieldView.as |   3 +-
 .../org/apache/flex/html/beads/GroupView.as     |   9 +
 .../flex/html/beads/NumericStepperView.as       |  61 +-
 .../org/apache/flex/html/beads/PanelView.as     |  45 +-
 .../flex/html/beads/PanelWithControlBarView.as  |   4 +-
 .../org/apache/flex/html/beads/SpinnerView.as   |  31 +-
 .../beads/controllers/SliderMouseController.as  |  27 +-
 .../beads/controllers/SpinnerMouseController.as |   9 +-
 .../FlexibleFirstChildHorizontalLayout.as       |  25 +-
 .../html/beads/layouts/HorizontalFlexLayout.as  |   6 +-
 .../flex/html/beads/layouts/HorizontalLayout.as |  30 +-
 .../HorizontalLayoutWithPaddingAndGap.as        |   2 +-
 .../layouts/OneFlexibleChildHorizontalLayout.as |  73 +-
 ...eFlexibleChildHorizontalLayoutForOverflow.as | 311 +++++++
 .../layouts/OneFlexibleChildVerticalLayout.as   |  70 +-
 ...OneFlexibleChildVerticalLayoutForOverflow.as | 313 +++++++
 .../html/beads/layouts/VerticalFlexLayout.as    |  20 +-
 .../flex/html/beads/layouts/VerticalLayout.as   |  33 +-
 .../apache/flex/html/beads/models/RangeModel.as |   6 +-
 .../html/beads/models/RangeModelExtended.as     |   9 +-
 .../flex/html/beads/models/ToggleButtonModel.as |   2 +-
 .../html/beads/models/ValueToggleButtonModel.as |   5 +-
 .../supportClasses/AccordionItemRenderer.as     |   2 +
 .../html/supportClasses/DataItemRenderer.as     |  22 +-
 .../html/supportClasses/ScrollingViewport.as    |  14 +-
 .../supportClasses/TextButtonItemRenderer.as    |   4 +-
 .../src/main/flex/org/apache/flex/svg/Circle.as |  12 +-
 .../flex/org/apache/flex/svg/CompoundGraphic.as |  12 +-
 .../main/flex/org/apache/flex/svg/DOMWrapper.as |  12 +-
 .../org/apache/flex/svg/GraphicContainer.as     |  12 +-
 .../flex/org/apache/flex/svg/GraphicShape.as    |  12 +-
 .../src/main/flex/org/apache/flex/svg/Image.as  |  12 +-
 .../src/main/flex/org/apache/flex/svg/Path.as   |  12 +-
 .../src/main/flex/org/apache/flex/svg/Rect.as   |  12 +-
 .../Basic/src/main/resources/basic-manifest.xml |   3 +
 .../Basic/src/main/resources/defaults.css       |  56 +-
 frameworks/projects/Binding/build.xml           |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../projects/Charts/.actionScriptProperties     |   3 +-
 frameworks/projects/Charts/build.xml            |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Collections/build.xml       |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Core/build.xml              |   6 +-
 .../Core/src/main/config/compile-swf-config.xml |   7 +
 .../org/apache/flex/core/AllCSSValuesImpl.as    | 772 +++++++++++++++++
 .../org/apache/flex/core/BindableCSSStyles.as   |   2 -
 .../flex/core/BindableCSSStylesWithFlex.as      | 115 +++
 .../org/apache/flex/core/SimpleCSSStyles.as     |  10 +-
 .../apache/flex/core/SimpleCSSStylesWithFlex.as | 110 +++
 .../org/apache/flex/core/SimpleCSSValuesImpl.as |  71 +-
 .../org/apache/flex/core/StyleChangeNotifier.as |   2 +-
 .../flex/org/apache/flex/events/BrowserEvent.as |  39 +-
 .../apache/flex/events/utils/KeyConverter.as    |   4 +-
 .../Core/src/main/resources/basic-manifest.xml  |   3 +
 .../projects/CreateJS/.actionScriptProperties   |   3 +-
 frameworks/projects/CreateJS/build.xml          |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../flex/org/apache/flex/createjs/core/View.as  |   4 +
 frameworks/projects/DragDrop/build.xml          |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Effects/build.xml           |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../flex/core/StatesWithTransitionsImpl.as      |   4 +-
 frameworks/projects/Express/build.xml           |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../flex/org/apache/flex/express/Application.as |   4 +-
 .../Express/src/main/resources/defaults.css     |   5 +
 frameworks/projects/Flat/build.xml              |   6 +-
 .../Flat/src/main/config/compile-swf-config.xml |   7 +
 .../flex/org/apache/flex/flat/DropDownList.as   |  22 +-
 .../Flat/src/main/resources/defaults.css        |  45 +-
 .../Flat/src/main/resources/flat-manifest.xml   |   1 +
 frameworks/projects/FontAwesome/build.xml       |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Formatters/build.xml        |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/GoogleMaps/build.xml        |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../projects/Graphics/.actionScriptProperties   |   4 +-
 frameworks/projects/Graphics/build.xml          |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../flex/org/apache/flex/graphics/CubicCurve.as |  12 +-
 .../org/apache/flex/graphics/GradientBase.as    |  12 +-
 .../org/apache/flex/graphics/GradientEntry.as   |  12 +-
 .../flex/org/apache/flex/graphics/ICircle.as    |  12 +-
 .../apache/flex/graphics/ICompoundGraphic.as    |  12 +-
 .../flex/org/apache/flex/graphics/IDrawable.as  |  12 +-
 .../flex/org/apache/flex/graphics/IEllipse.as   |  12 +-
 .../main/flex/org/apache/flex/graphics/IFill.as |  12 +-
 .../org/apache/flex/graphics/IGraphicShape.as   |  12 +-
 .../main/flex/org/apache/flex/graphics/IPath.as |  12 +-
 .../org/apache/flex/graphics/IPathCommand.as    |  12 +-
 .../main/flex/org/apache/flex/graphics/IRect.as |  12 +-
 .../flex/org/apache/flex/graphics/IStroke.as    |  12 +-
 .../main/flex/org/apache/flex/graphics/IText.as |  12 +-
 .../flex/org/apache/flex/graphics/LineStyle.as  |  12 +-
 .../flex/org/apache/flex/graphics/LineTo.as     |  12 +-
 .../flex/org/apache/flex/graphics/MoveTo.as     |  12 +-
 .../org/apache/flex/graphics/PathBuilder.as     |  12 +-
 .../org/apache/flex/graphics/QuadraticCurve.as  |  12 +-
 .../flex/org/apache/flex/graphics/SolidColor.as |  12 +-
 .../apache/flex/graphics/SolidColorStroke.as    |  12 +-
 .../graphics/utils/AdvancedLayoutFeatures.as    |  12 +-
 .../flex/graphics/utils/CompoundTransform.as    |  12 +-
 .../flex/graphics/utils/IAssetLayoutFeatures.as |  12 +-
 .../apache/flex/graphics/utils/PathHelper.as    |  12 +-
 .../flex/graphics/utils/TransformOffsets.as     |  12 +-
 .../main/flex/org/apache/flex/svg/ClipBead.as   |   2 +-
 .../flex/org/apache/flex/svg/LinearGradient.as  |  12 +-
 .../projects/HTML/.actionScriptProperties       |   7 +-
 frameworks/projects/HTML/build.xml              |   6 +-
 .../HTML/src/main/config/compile-swf-config.xml |   7 +
 .../projects/HTML5/.actionScriptProperties      |   4 +-
 frameworks/projects/HTML5/build.xml             |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/JQuery/build.xml            |   6 +-
 .../projects/JQuery/js/tests/FlexJSTest.js      |  12 +-
 .../JQuery/js/tests/MySimpleValuesImpl.js       |  12 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Language/build.xml          |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../main/flex/org/apache/flex/utils/Language.as | 100 ---
 .../projects/MaterialDesignLite/build.xml       |   8 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../org/apache/flex/mdl/NavigationLayout.as     |  32 +-
 .../beads/controllers/DropDownListController.as |  39 +-
 .../flex/mdl/beads/views/DropDownListView.as    |  40 +-
 .../src/main/resources/defaults.css             |   7 +
 frameworks/projects/Mobile/build.xml            |   8 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../Mobile/src/main/flex/CordovaClasses.as      |   8 +-
 .../main/flex/org/apache/cordova/Application.as |  86 --
 .../src/main/flex/org/apache/cordova/Weinre.as  |  88 --
 .../flex/org/apache/cordova/camera/Camera.as    | 192 -----
 .../apache/cordova/geolocation/Geolocation.as   |  61 --
 .../flex/org/apache/flex/cordova/Application.as |  86 ++
 .../main/flex/org/apache/flex/cordova/Camera.as | 168 ++++
 .../main/flex/org/apache/flex/cordova/Weinre.as |  88 ++
 .../flex/cordova/geolocation/Geolocation.as     |  61 ++
 .../flex/mobile/beads/StackedViewManagerView.as |   4 +-
 .../flex/mobile/beads/TabbedViewManagerView.as  |   4 +-
 .../src/main/resources/cordova-manifest.xml     |   8 +-
 frameworks/projects/Network/build.xml           |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Reflection/build.xml        |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 frameworks/projects/Storage/build.xml           |   6 +-
 .../src/main/config/compile-swf-config.xml      |   7 +
 .../providers/AndroidExternalStorageProvider.as |   8 +-
 frameworks/projects/XML/build.xml               |   6 +-
 .../XML/src/main/config/compile-swf-config.xml  |   7 +
 ide/flashbuilder/antscripts.xml                 |  12 +-
 installer.xml                                   |  59 +-
 .../src/DataBindingTestbed.mxml                 |   7 +
 .../FlexJSTest_Panel/src/MyInitialView.mxml     |   7 +-
 .../FlexJSTest_SVG/src/FlexJSTest_SVG.mxml      |   7 +
 manualtests/build_example.xml                   | 305 +++----
 .../java/src/marmotinni/MarmotinniRunner.java   |   9 +
 mustella/js/AssertPropertyValue.js              |  12 +-
 mustella/js/DispatchMouseClickEvent.js          |  12 +-
 mustella/js/DispatchMouseEvent.js               |  12 +-
 mustella/js/ExitWhenDone.js                     |  12 +-
 mustella/js/SendFormattedResultsToLog.js        |  12 +-
 mustella/js/SetProperty.js                      |  12 +-
 mustella/js/SetShowRTE.js                       |  12 +-
 mustella/js/TestCase.js                         |  12 +-
 mustella/js/UnitTester.js                       |  12 +-
 mustella/tests/basicTests/BasicTestsApp.mxml    |   7 +
 nightly.properties                              |   2 +-
 pom.xml                                         |   2 +-
 releasecandidate.xml                            |  43 +-
 405 files changed, 9051 insertions(+), 4311 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/archetypes/flexjs-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --cc archetypes/flexjs-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
index d2f9015,0251cc0..1265b93
--- a/archetypes/flexjs-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/flexjs-simple-application-archetype/src/main/resources/archetype-resources/pom.xml
@@@ -81,8 -81,9 +81,9 @@@
      <dependency>
        <groupId>org.apache.flex.flexjs.framework</groupId>
        <artifactId>Language</artifactId>
 -      <version>0.8.0</version>
 +      <version>0.9.0-SNAPSHOT</version>
        <type>swc</type>
+       <classifier>js</classifier>
      </dependency>
    </dependencies>
  
@@@ -95,4 -96,4 +96,4 @@@
      </profile>
    </profiles>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/archetypes/flexjs-simple-application-pure-js-archetype/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --cc archetypes/flexjs-simple-application-pure-js-archetype/src/main/resources/archetype-resources/pom.xml
index 077ec0f,1ec5a49..2702f1d
--- a/archetypes/flexjs-simple-application-pure-js-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/flexjs-simple-application-pure-js-archetype/src/main/resources/archetype-resources/pom.xml
@@@ -87,4 -87,4 +87,4 @@@
      </profile>
    </profiles>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/archetypes/flexjs-simple-application-pure-swf-archetype/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --cc archetypes/flexjs-simple-application-pure-swf-archetype/src/main/resources/archetype-resources/pom.xml
index 43b3788,add0092..dae0d44
--- a/archetypes/flexjs-simple-application-pure-swf-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/flexjs-simple-application-pure-swf-archetype/src/main/resources/archetype-resources/pom.xml
@@@ -68,4 -68,4 +68,4 @@@
      </dependency>
    </dependencies>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/distribution/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/express/DataBindingExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/express/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/ASDoc/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/ChartExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/CordovaCameraExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/CreateJSExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/DataBindingExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/DataBindingExample_Flat/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/DataBindingExample_as/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/DateControlsExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/DesktopMap/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/FlexJSStore/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/FlexJSStore_jquery/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/FlexTeamPage_MDL/pom.xml
----------------------------------------------------------------------
diff --cc examples/flexjs/FlexTeamPage_MDL/pom.xml
index 0ced478,f212838..3c73743
--- a/examples/flexjs/FlexTeamPage_MDL/pom.xml
+++ b/examples/flexjs/FlexTeamPage_MDL/pom.xml
@@@ -111,4 -116,4 +114,4 @@@
      </dependency>
    </dependencies>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/FlexWebsiteStatsViewer/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/ListExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MDLBlogExample/pom.xml
----------------------------------------------------------------------
diff --cc examples/flexjs/MDLBlogExample/pom.xml
index c72f4cc,262a020..fc693ee
--- a/examples/flexjs/MDLBlogExample/pom.xml
+++ b/examples/flexjs/MDLBlogExample/pom.xml
@@@ -66,8 -66,9 +66,9 @@@
      <dependency>
        <groupId>org.apache.flex.flexjs.framework</groupId>
        <artifactId>MaterialDesignLite</artifactId>
 -      <version>0.8.0</version>
 +      <version>0.9.0-SNAPSHOT</version>
        <type>swc</type>
+       <classifier>js</classifier>
      </dependency>
  
      <!-- Needed for Flash compilation -->
@@@ -80,4 -81,4 +81,4 @@@
      </dependency>
    </dependencies>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MDLDynamicTabsExample/pom.xml
----------------------------------------------------------------------
diff --cc examples/flexjs/MDLDynamicTabsExample/pom.xml
index 3114ef2,12ac364..db429a1
--- a/examples/flexjs/MDLDynamicTabsExample/pom.xml
+++ b/examples/flexjs/MDLDynamicTabsExample/pom.xml
@@@ -81,4 -84,4 +82,4 @@@
  
    </dependencies>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MDLExample/pom.xml
----------------------------------------------------------------------
diff --cc examples/flexjs/MDLExample/pom.xml
index 92c9117,6349eec..fb88e3c
--- a/examples/flexjs/MDLExample/pom.xml
+++ b/examples/flexjs/MDLExample/pom.xml
@@@ -85,4 -88,4 +86,4 @@@
      </dependency>
    </dependencies>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MapSearch/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MobileMap/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MobileStocks/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/MobileTrader/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/StorageExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/StyleExample/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/TeamPage/pom.xml
----------------------------------------------------------------------
diff --cc examples/flexjs/TeamPage/pom.xml
index fcbaa33,854790d..a41460f
--- a/examples/flexjs/TeamPage/pom.xml
+++ b/examples/flexjs/TeamPage/pom.xml
@@@ -49,7 -51,14 +49,6 @@@
    </build>
  
    <dependencies>
--    <!-- Already added in parent -->
 -    <!--dependency>
 -      <groupId>org.apache.flex.flexjs.framework</groupId>
 -      <artifactId>Core</artifactId>
 -      <version>0.8.0</version>
 -      <type>swc</type>
 -    </dependency-->
 -    
      <dependency>
        <groupId>org.apache.flex.flexjs.framework</groupId>
        <artifactId>Network</artifactId>
@@@ -89,4 -99,4 +89,4 @@@
      </dependency-->
    </dependencies>
  
--</project>
++</project>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/examples/flexjs/pom.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/frameworks/projects/Basic/src/main/flex/BasicClasses.as
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/frameworks/projects/Basic/src/main/flex/org/apache/flex/core/LayoutBase.as
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/frameworks/projects/Basic/src/main/flex/org/apache/flex/core/UIBase.as
----------------------------------------------------------------------
diff --cc frameworks/projects/Basic/src/main/flex/org/apache/flex/core/UIBase.as
index efde41b,1db7e23..432c8d2
--- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/core/UIBase.as
+++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/core/UIBase.as
@@@ -369,8 -369,10 +369,10 @@@ package org.apache.flex.cor
          {
              var pixels:Number;
              var strpixels:String = positioner.style.width as String;
 -            if (strpixels !== null && strpixels.indexOf('%') != -1)
 +            if (strpixels !== null && strpixels.indexOf('%') !== -1)
                  pixels = NaN;
+             else if (strpixels === "")
+             	pixels = NaN;
              else
                  pixels = parseFloat(strpixels);
              if (isNaN(pixels)) {
@@@ -461,8 -463,10 +463,10 @@@
          {
              var pixels:Number;
              var strpixels:String = positioner.style.height as String;
 -            if (strpixels !== null && strpixels.indexOf('%') != -1)
 +            if (strpixels !== null && strpixels.indexOf('%') !== -1)
                  pixels = NaN;
+             else if (strpixels === "")
+             	pixels = NaN;
              else
                  pixels = parseFloat(strpixels);
              if (isNaN(pixels)) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/ContainerView.as
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
----------------------------------------------------------------------
diff --cc frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
index b63db1a,0bdc8c1..7f21708
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as
@@@ -606,29 -593,40 +607,40 @@@ package org.apache.flex.cor
              for each (var part:String in parts)
              {
                  var pieces:Array = StringUtil.splitAndTrim(part, ":");
+                 if (pieces.length < 2) continue;
+                 var valueName:String = pieces[0];
+                 var c:int = valueName.indexOf("-");
+ 	            while (c != -1)
+ 	            {
+ 	                valueName = valueName.substr(0, c) +
+ 	                    valueName.charAt(c + 1).toUpperCase() +
+ 	                    valueName.substr(c + 2);
+ 	                c = valueName.indexOf("-");
+ 	            }
+                 
                  var value:String = pieces[1];
 -                if (value == "null")
 -                    obj[valueName] = null;
 -                else if (value == "true")
 -                    obj[valueName] = true;
 -                else if (value == "false")
 -                    obj[valueName] = false;
 +                if (value === "null")
 +                    obj[pieces[0]] = null;
 +                else if (value === "true")
 +                    obj[pieces[0]] = true;
 +                else if (value === "false")
 +                    obj[pieces[0]] = false;
                  else
                  {
                      var n:Number = Number(value);
                      if (isNaN(n))
                      {
 -                        if (value.charAt(0) == "#" || value.indexOf("rgb") == 0)
 +                        if (value.charAt(0) === "#" || value.indexOf("rgb") === 0)
                          {                            
-                             obj[pieces[0]] = CSSUtils.toColor(value);
+                             obj[valueName] = CSSUtils.toColor(value);
                          }
                          else
                          {
 -                            if (value.charAt(0) == "'")
 +                            if (value.charAt(0) === "'")
                                  value = value.substr(1, value.length - 2);
 -                            else if (value.charAt(0) == '"')
 +                            else if (value.charAt(0) === '"')
                                  value = value.substr(1, value.length - 2);
-                             obj[pieces[0]] = value;
+                             obj[valueName] = value;
                          }
                      }
                      else
@@@ -645,15 -643,19 +657,19 @@@
           *  @playerversion Flash 10.2
           *  @playerversion AIR 2.6
           *  @productversion FlexJS 0.0
+ 		 *
+ 		 *  @flexjsignorecoercion HTMLStyleElement
+ 		 *  @flexjsignorecoercion CSSStyleSheet
+ 		 *  @flexjsignorecoercion uint
           */
 -        public function addRule(ruleName:String, values:Object):void
 +        public function addRule(ruleName:String, ruleValues:Object):void
          {
              var asValues:Object = {};
 -            for (var valueName:String in values)
 +            for (var valueName:String in ruleValues)
              {
 -                var v:* = values[valueName];
 +                var v:* = ruleValues[valueName];
                  var c:int = valueName.indexOf("-");
 -                while (c != -1)
 +                while (c !== -1)
                  {
                      valueName = valueName.substr(0, c) +
                          valueName.charAt(c + 1).toUpperCase() +
@@@ -662,8 -664,41 +678,42 @@@
                  }
                  asValues[valueName] = v;
              }
-             values[ruleName] = asValues;
+             this.values[ruleName] = asValues;
+ 			COMPILE::JS
+ 			{
+ 				if (!ss)
+ 				{
+ 					var styleElement:HTMLStyleElement = document.createElement('style') as HTMLStyleElement;
+ 					document.head.appendChild(styleElement);
+ 					ss = styleElement.sheet as CSSStyleSheet;
+ 				}
+ 				var cssString:String = ruleName + " {"
 -				for (var p:String in values)
++				for (var p:String in ruleValues)
+ 				{
 -					var value:Object = values[p];
++					var value:Object = ruleValues[p];
+ 				    if (typeof(value) === 'function') continue;
+ 					cssString += p + ": ";
+ 					if (typeof(value) == 'number') {
+                     	if (colorStyles[p])
+                         	value = CSSUtils.attributeFromColor(value as uint);
+                     	else
+                         	value = value.toString() + 'px';
+                 	}
+                 	else if (p == 'backgroundImage') {
+                     	if (p.indexOf('url') !== 0)
+                         	value = 'url(' + value + ')';
+                 	}
+ 					cssString += value + ";";
+ 					
+ 				}
+ 				cssString += "}";
+ 				ss.insertRule(cssString, ss.cssRules.length);
+ 			}
++>>>>>>> release0.8.0
          }
+ 		
+ 		COMPILE::JS
+ 		private var ss:CSSStyleSheet;
          
          /**
           *  A map of inheriting styles 
@@@ -704,16 -739,8 +754,8 @@@
              'backgroundColor': 1,
              'borderColor': 1,
              'color': 1
 -        }
 +        };
  
-         /**
-          * The styles that can use raw numbers
-          */
-         COMPILE::JS
-         public static const numericStyles:Object = {
-             'fontWeight': 1
-         };
-         
          
          /**
           * The properties that enumerate that we skip
@@@ -748,11 -774,9 +789,9 @@@
                  var value:* = styles[p];
                  if (value === undefined)
                      continue;
 -                if (typeof(value) == 'number') {
 +                if (typeof(value) === 'number') {
                      if (colorStyles[p])
                          value = CSSUtils.attributeFromColor(value);
-                     else if (numericStyles[p])
-                         value = value.toString();
                      else
                          value = value.toString() + 'px';
                  }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1d68cd8b/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index 921734a,919b7d1..3b7a438
--- a/pom.xml
+++ b/pom.xml
@@@ -373,4 -367,4 +373,4 @@@
      </pluginRepository>
    </pluginRepositories>
  
--</project>
++</project>


[05/12] git commit: [flex-asjs] [refs/heads/tlf] - update to next version SNAPSHOT

Posted by ha...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/flexjs/pom.xml
----------------------------------------------------------------------
diff --git a/examples/flexjs/pom.xml b/examples/flexjs/pom.xml
index a59730d..d0b9ec8 100644
--- a/examples/flexjs/pom.xml
+++ b/examples/flexjs/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>examples-flexjs</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Examples: FlexJS</name>
@@ -100,84 +100,84 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
         <groupId>org.apache.flex.flexjs.framework</groupId>
         <artifactId>Graphics</artifactId>
-        <version>0.8.0</version>
+        <version>0.9.0-SNAPSHOT</version>
         <type>swc</type>
         <classifier>js</classifier>
     </dependency>
@@ -186,7 +186,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.examples</groupId>
       <artifactId>examples-tests</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/native/ButtonExample/pom.xml
----------------------------------------------------------------------
diff --git a/examples/native/ButtonExample/pom.xml b/examples/native/ButtonExample/pom.xml
index f67f056..e18ea82 100644
--- a/examples/native/ButtonExample/pom.xml
+++ b/examples/native/ButtonExample/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-native</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>ButtonExample</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: Native: ButtonExample</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/native/USStatesMap/pom.xml
----------------------------------------------------------------------
diff --git a/examples/native/USStatesMap/pom.xml b/examples/native/USStatesMap/pom.xml
index 9fed6c1..b2f684d 100644
--- a/examples/native/USStatesMap/pom.xml
+++ b/examples/native/USStatesMap/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples-native</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>USStatesMap</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swf</packaging>
 
   <name>Apache Flex - FlexJS: Examples: Native: USStatesMap</name>
@@ -70,7 +70,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/native/pom.xml
----------------------------------------------------------------------
diff --git a/examples/native/pom.xml b/examples/native/pom.xml
index c6b7315..d68215f 100644
--- a/examples/native/pom.xml
+++ b/examples/native/pom.xml
@@ -25,11 +25,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.examples</groupId>
     <artifactId>examples</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>examples-native</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Examples: Native</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/examples/pom.xml
----------------------------------------------------------------------
diff --git a/examples/pom.xml b/examples/pom.xml
index d58f37c..af8c02e 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -24,12 +24,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.examples</groupId>
   <artifactId>examples</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Examples</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/fontsrc/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/fontsrc/pom.xml b/frameworks/fontsrc/pom.xml
index 4cc6412..ca0ca77 100644
--- a/frameworks/fontsrc/pom.xml
+++ b/frameworks/fontsrc/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>frameworks</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Fonts</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>war</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Fonts</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/pom.xml b/frameworks/pom.xml
index bc5031b..07b1015 100644
--- a/frameworks/pom.xml
+++ b/frameworks/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>frameworks</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Framework</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Basic/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Basic/pom.xml b/frameworks/projects/Basic/pom.xml
index 4501c01..648a98e 100644
--- a/frameworks/projects/Basic/pom.xml
+++ b/frameworks/projects/Basic/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Basic</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Basic</name>
@@ -76,56 +76,56 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Binding/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Binding/pom.xml b/frameworks/projects/Binding/pom.xml
index 281f3ab..589340a 100644
--- a/frameworks/projects/Binding/pom.xml
+++ b/frameworks/projects/Binding/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Binding</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Binding</name>
@@ -58,14 +58,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Charts/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Charts/pom.xml b/frameworks/projects/Charts/pom.xml
index e2076cd..ffb40f0 100644
--- a/frameworks/projects/Charts/pom.xml
+++ b/frameworks/projects/Charts/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Charts</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Charts</name>
@@ -66,70 +66,70 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Collections/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Collections/pom.xml b/frameworks/projects/Collections/pom.xml
index 33962c0..df2fe97 100644
--- a/frameworks/projects/Collections/pom.xml
+++ b/frameworks/projects/Collections/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Collections</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Collections</name>
@@ -60,14 +60,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Core/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/pom.xml b/frameworks/projects/Core/pom.xml
index 71449bb..8f53d3f 100644
--- a/frameworks/projects/Core/pom.xml
+++ b/frameworks/projects/Core/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Core</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Core</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/CreateJS/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/CreateJS/pom.xml b/frameworks/projects/CreateJS/pom.xml
index a93ff7f..7a0d8c1 100644
--- a/frameworks/projects/CreateJS/pom.xml
+++ b/frameworks/projects/CreateJS/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>CreateJS</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: CreateJS</name>
@@ -66,56 +66,56 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Effects</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/DragDrop/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/DragDrop/pom.xml b/frameworks/projects/DragDrop/pom.xml
index 28de628..74fb73c 100644
--- a/frameworks/projects/DragDrop/pom.xml
+++ b/frameworks/projects/DragDrop/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>DragDrop</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: DragDrop</name>
@@ -60,14 +60,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Effects/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Effects/pom.xml b/frameworks/projects/Effects/pom.xml
index 4dd7789..05dc2cf 100644
--- a/frameworks/projects/Effects/pom.xml
+++ b/frameworks/projects/Effects/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Effects</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Effects</name>
@@ -60,28 +60,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Express/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Express/pom.xml b/frameworks/projects/Express/pom.xml
index 8527146..c25a04b 100644
--- a/frameworks/projects/Express/pom.xml
+++ b/frameworks/projects/Express/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Express</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Express</name>
@@ -72,70 +72,70 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Flat/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Flat/pom.xml b/frameworks/projects/Flat/pom.xml
index f1d95a0..ef37a1a 100644
--- a/frameworks/projects/Flat/pom.xml
+++ b/frameworks/projects/Flat/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Flat</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Flat</name>
@@ -72,63 +72,63 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/FontAwesome/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/FontAwesome/pom.xml b/frameworks/projects/FontAwesome/pom.xml
index 2ee431e..48e4f86 100644
--- a/frameworks/projects/FontAwesome/pom.xml
+++ b/frameworks/projects/FontAwesome/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>FontAwesome</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: FontAwesome</name>
@@ -72,70 +72,70 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Formatters/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Formatters/pom.xml b/frameworks/projects/Formatters/pom.xml
index 2d5f101..0fdf079 100644
--- a/frameworks/projects/Formatters/pom.xml
+++ b/frameworks/projects/Formatters/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Formatters</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Formatters</name>
@@ -60,28 +60,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/GoogleMaps/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/GoogleMaps/pom.xml b/frameworks/projects/GoogleMaps/pom.xml
index 1a4a339..ae3aa41 100644
--- a/frameworks/projects/GoogleMaps/pom.xml
+++ b/frameworks/projects/GoogleMaps/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>GoogleMaps</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: GoogleMaps</name>
@@ -67,28 +67,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
         <groupId>org.apache.flex.flexjs.framework</groupId>
         <artifactId>Basic</artifactId>
-        <version>0.8.0</version>
+        <version>0.9.0-SNAPSHOT</version>
         <type>swc</type>
         <classifier>swf</classifier>
     </dependency>
     <dependency>
         <groupId>org.apache.flex.flexjs.framework</groupId>
         <artifactId>Basic</artifactId>
-        <version>0.8.0</version>
+        <version>0.9.0-SNAPSHOT</version>
         <type>swc</type>
         <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Graphics/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Graphics/pom.xml b/frameworks/projects/Graphics/pom.xml
index e56d70f..74ff689 100644
--- a/frameworks/projects/Graphics/pom.xml
+++ b/frameworks/projects/Graphics/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Graphics</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Graphics</name>
@@ -120,14 +120,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/HTML/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/pom.xml b/frameworks/projects/HTML/pom.xml
index a2af895..1c4a1a1 100644
--- a/frameworks/projects/HTML/pom.xml
+++ b/frameworks/projects/HTML/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>HTML</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: HTML</name>
@@ -66,70 +66,70 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/HTML5/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML5/pom.xml b/frameworks/projects/HTML5/pom.xml
index e96464c..56e305e 100644
--- a/frameworks/projects/HTML5/pom.xml
+++ b/frameworks/projects/HTML5/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>HTML5</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: HTML5</name>
@@ -66,28 +66,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/JQuery/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/JQuery/pom.xml b/frameworks/projects/JQuery/pom.xml
index 3d62a99..2cb17cd 100644
--- a/frameworks/projects/JQuery/pom.xml
+++ b/frameworks/projects/JQuery/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>JQuery</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: JQuery</name>
@@ -66,28 +66,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Language/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Language/pom.xml b/frameworks/projects/Language/pom.xml
index 1602420..165567c 100644
--- a/frameworks/projects/Language/pom.xml
+++ b/frameworks/projects/Language/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Language</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Language</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/MaterialDesignLite/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/MaterialDesignLite/pom.xml b/frameworks/projects/MaterialDesignLite/pom.xml
index 01c7790..b23bd0e 100644
--- a/frameworks/projects/MaterialDesignLite/pom.xml
+++ b/frameworks/projects/MaterialDesignLite/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>MaterialDesignLite</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Material Design Lite</name>
@@ -72,84 +72,84 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Binding</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Collections</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>HTML</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Mobile/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Mobile/pom.xml b/frameworks/projects/Mobile/pom.xml
index 9899475..14e6009 100644
--- a/frameworks/projects/Mobile/pom.xml
+++ b/frameworks/projects/Mobile/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Mobile</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Mobile</name>
@@ -70,42 +70,42 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Graphics</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Basic</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Network/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Network/pom.xml b/frameworks/projects/Network/pom.xml
index 507a0d3..a492694 100644
--- a/frameworks/projects/Network/pom.xml
+++ b/frameworks/projects/Network/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Network</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Network</name>
@@ -60,14 +60,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Reflection/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Reflection/pom.xml b/frameworks/projects/Reflection/pom.xml
index c838111..32c2888 100644
--- a/frameworks/projects/Reflection/pom.xml
+++ b/frameworks/projects/Reflection/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Reflection</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Reflection</name>
@@ -52,14 +52,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/Storage/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/Storage/pom.xml b/frameworks/projects/Storage/pom.xml
index ed7cc06..87eb087 100644
--- a/frameworks/projects/Storage/pom.xml
+++ b/frameworks/projects/Storage/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>Storage</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: Storage</name>
@@ -66,14 +66,14 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/XML/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/XML/pom.xml b/frameworks/projects/XML/pom.xml
index 1ab7fe4..34932b5 100644
--- a/frameworks/projects/XML/pom.xml
+++ b/frameworks/projects/XML/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>projects</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>XML</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs: XML</name>
@@ -58,28 +58,28 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Core</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>swf</classifier>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.framework</groupId>
       <artifactId>Language</artifactId>
-      <version>0.8.0</version>
+      <version>0.9.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>js</classifier>
     </dependency>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/frameworks/projects/pom.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/pom.xml b/frameworks/projects/pom.xml
index a261af7..272a1ae 100644
--- a/frameworks/projects/pom.xml
+++ b/frameworks/projects/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>frameworks</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>projects</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Libs</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 76a4e65..919b7d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
 
   <groupId>org.apache.flex.flexjs.framework</groupId>
   <artifactId>flexjs-framework-parent</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Framework: Parent</name>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f704c1/testsuite/pom.xml
----------------------------------------------------------------------
diff --git a/testsuite/pom.xml b/testsuite/pom.xml
index e5191a9..5a58706 100644
--- a/testsuite/pom.xml
+++ b/testsuite/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.framework</groupId>
     <artifactId>flexjs-framework-parent</artifactId>
-    <version>0.8.0</version>
+    <version>0.9.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>testsuite</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0-SNAPSHOT</version>
   <packaging>jar</packaging>
 
   <name>Apache Flex - FlexJS: Testsuite</name>


[04/12] git commit: [flex-asjs] [refs/heads/tlf] - fix release target

Posted by ha...@apache.org.
fix release target


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/03c53b05
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/03c53b05
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/03c53b05

Branch: refs/heads/tlf
Commit: 03c53b050c8929cb1492c1ec5fcb1087fe7d016e
Parents: 5beb701
Author: Alex Harui <ah...@apache.org>
Authored: Sun Jun 25 23:23:49 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Jun 25 23:23:49 2017 -0700

----------------------------------------------------------------------
 releasecandidate.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/03c53b05/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/releasecandidate.xml b/releasecandidate.xml
index 95b47a3..58d4835 100644
--- a/releasecandidate.xml
+++ b/releasecandidate.xml
@@ -568,7 +568,7 @@ ${my.name}
 			<arg value="${dist.dev}/flex/flexjs/${release.version}/rc${rc}" />
             <arg value="${dist.release}/flex/flexjs/${release.version}" />
 		</exec>
-		<exec executable="${svn}" dir="${dist.release}/flex/flexjs" failonerror="true" >
+		<exec executable="${svn}" dir="${dist.release}/.." failonerror="true" >
 			<arg value="commit" />
 			<arg value="--username" />
 			<arg value="${apache.username}" />


[12/12] git commit: [flex-asjs] [refs/heads/tlf] - Merge branch 'develop' into tlf

Posted by ha...@apache.org.
Merge branch 'develop' into tlf

# Conflicts:
#	distribution/pom.xml
#	distribution/src/main/assembly/component.xml
#	examples/express/DataBindingExample/pom.xml
#	examples/express/pom.xml
#	examples/flexjs/TeamPage/pom.xml
#	frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/c2f7a2d8
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/c2f7a2d8
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/c2f7a2d8

Branch: refs/heads/tlf
Commit: c2f7a2d8f3b83a95090da88b207e767731f5f0a8
Parents: e9e039d 911cf92
Author: Harbs <ha...@in-tools.com>
Authored: Tue Jun 27 20:13:04 2017 +0300
Committer: Harbs <ha...@in-tools.com>
Committed: Tue Jun 27 20:13:04 2017 +0300

----------------------------------------------------------------------
 .../main/resources/archetype-resources/pom.xml  |  2 +-
 .../main/resources/archetype-resources/pom.xml  |  2 +-
 .../main/resources/archetype-resources/pom.xml  |  2 +-
 build.properties                                |  2 +-
 distribution/pom.xml                            | 13 ++--
 distribution/src/main/assembly/component.xml    |  4 +-
 examples/express/DataBindingExample/pom.xml     |  2 +-
 examples/express/pom.xml                        |  4 +-
 examples/flexjs/FlexTeamPage_MDL/pom.xml        |  2 +-
 examples/flexjs/MDLBlogExample/pom.xml          |  2 +-
 examples/flexjs/MDLDynamicTabsExample/pom.xml   |  2 +-
 examples/flexjs/MDLExample/pom.xml              |  2 +-
 .../flexjs/MDLExample/src/main/flex/Tables.mxml | 51 ++++++++++---
 .../CustomTableRowItemRenderer.mxml             | 15 +++-
 .../TableRowItemRendererWithIcons.mxml          | 13 +++-
 examples/flexjs/TeamPage/pom.xml                |  7 +-
 .../main/flex/org/apache/flex/mdl/TableCell.as  | 27 +------
 .../flex/org/apache/flex/mdl/TableColumn.as     | 29 +-------
 .../apache/flex/mdl/beads/TableNumericEnable.as | 77 ++++++++++++++++++++
 .../mdl/itemRenderers/TableRowItemRenderer.as   | 27 +------
 .../src/main/resources/mdl-manifest.xml         |  2 +
 nightly.properties                              |  2 +-
 pom.xml                                         |  2 +-
 releasecandidate.xml                            |  7 +-
 24 files changed, 172 insertions(+), 126 deletions(-)
----------------------------------------------------------------------