You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/09/07 22:40:35 UTC

[01/32] git commit: [flex-falcon] [refs/heads/develop] - tune up approval script

Repository: flex-falcon
Updated Branches:
  refs/heads/develop ce39ed085 -> 51acc7543


tune up approval script


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

Branch: refs/heads/develop
Commit: 4a765ac389eb86c9e3be29824e624ecc4c59ae8a
Parents: f8fa738
Author: Alex Harui <ah...@apache.org>
Authored: Thu Aug 18 23:22:16 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Aug 18 23:22:16 2016 -0700

----------------------------------------------------------------------
 ApproveFalcon.xml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4a765ac3/ApproveFalcon.xml
----------------------------------------------------------------------
diff --git a/ApproveFalcon.xml b/ApproveFalcon.xml
index 6d308f3..408be37 100644
--- a/ApproveFalcon.xml
+++ b/ApproveFalcon.xml
@@ -300,6 +300,7 @@
                 <exclude name="debugger/META-INF/MANIFEST.MF"/>
                 <exclude name="flex-typedefs/target/maven-shared-archive-resources/META-INF/DEPENDENCIES"/>
                 <exclude name="**/*.patch"/>
+                <exclude name="README_MAVEN.txt"/>
                 <exclude name="RELEASE_NOTES_JX"/>
                 <exclude name="LICENSE.jx.bin"/>
                 <exclude name="NOTICE.jx"/>
@@ -372,6 +373,7 @@
                 <exclude name="flex-typedefs/target/maven-shared-archive-resources/META-INF/DEPENDENCIES"/>
                 <exclude name="**/*.patch"/>
                 <exclude name="LICENSE.jx.bin"/>
+                <exclude name="README_MAVEN.txt"/>
                 <exclude name="RELEASE_NOTES_JX"/>
                 <exclude name="NOTICE.jx"/>
                 <exclude name="README_JX"/>


[31/32] git commit: [flex-falcon] [refs/heads/develop] - try to handle custom tags in release mode

Posted by ah...@apache.org.
try to handle custom tags in release mode


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

Branch: refs/heads/develop
Commit: 001a88961b4377a9271028cd4112e387f9a65603
Parents: e592939
Author: Alex Harui <ah...@apache.org>
Authored: Wed Sep 7 15:27:42 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Sep 7 15:27:42 2016 -0700

----------------------------------------------------------------------
 releasecandidate.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/001a8896/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/releasecandidate.xml b/releasecandidate.xml
index fdcf587..7c2c43a 100644
--- a/releasecandidate.xml
+++ b/releasecandidate.xml
@@ -492,9 +492,14 @@ ${my.name}
 	</target>
 	
     <target name="release.tag" >
+        <condition property="tag" value="apache-flex-falcon-${release.version}-rc${rc}">
+            <not>
+                <isset property="tag" />
+            </not>
+        </condition>
         <exec executable="${git}" dir="${basedir}" failonerror="true" output="${basedir}/taghash.txt">
             <arg value="show" />
-            <arg value="apache-flex-falcon-${release.version}-rc${rc}" />
+            <arg value="${tag}" />
         </exec>
         <replaceregexp file="${basedir}/taghash.txt" match="(.*).commit (.*).Author(.*)" replace="\2" byline="false" flags="s" />
         <loadfile srcFile="${basedir}/taghash.txt" property="releasehash" />


[21/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 646fd40caf5b87db9bba9f7e668da5df126df82d
Parents: f121352
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:45:57 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/646fd40c/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 6cdb464..942356c 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0</version>
+  <version>1.0.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,7 +38,6 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
-    <tag>compiler-build-tools-1.0.0</tag>
   </scm>
 
   <build>
@@ -75,6 +74,10 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>
         <version>2.5.3</version>
+        <configuration>
+          <!-- If we push the changes, the build will fail, cause it's in a child directory -->
+          <pushChanges>false</pushChanges>
+        </configuration>
         <dependencies>
           <dependency>
             <groupId>org.apache.maven.plugins</groupId>


[26/32] git commit: [flex-falcon] [refs/heads/develop] - - Fixed JavaDoc errors - Changed the JavaDoc configuration to be active in the release.

Posted by ah...@apache.org.
- Fixed JavaDoc errors
- Changed the JavaDoc configuration to be active in the release.


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

Branch: refs/heads/develop
Commit: 293e9da12b0ca3583e645cedc093ec3edb528468
Parents: 027fcda
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:21:55 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:21:55 2016 +0200

----------------------------------------------------------------------
 pom.xml | 72 ++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 41 insertions(+), 31 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/293e9da1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2b3aef2..8bd6aba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -404,6 +404,47 @@
         <version>3.0.2</version>
       </plugin>
     </plugins>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.10.4</version>
+          <configuration>
+            <tags>
+              <tag>
+                <name>goal</name>
+                <placement>a</placement>
+                <head>Goal:</head>
+              </tag>
+              <tag>
+                <name>phase</name>
+                <placement>a</placement>
+                <head>Phase:</head>
+              </tag>
+              <tag>
+                <name>threadSafe</name>
+                <placement>a</placement>
+                <head>Thread Safe:</head>
+              </tag>
+              <tag>
+                <name>requiresDependencyResolution</name>
+                <placement>a</placement>
+                <head>Requires Dependency Resolution:</head>
+              </tag>
+              <tag>
+                <name>requiresProject</name>
+                <placement>a</placement>
+                <head>Requires Project:</head>
+              </tag>
+            </tags>
+            <!-- TODO: This should only be a measure of last resort -->
+            <failOnError>false</failOnError>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
   <reporting>
@@ -446,37 +487,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.10.4</version>
-        <configuration>
-          <tags>
-            <tag>
-              <name>goal</name>
-              <placement>a</placement>
-              <head>Goal:</head>
-            </tag>
-            <tag>
-              <name>phase</name>
-              <placement>a</placement>
-              <head>Phase:</head>
-            </tag>
-            <tag>
-              <name>threadSafe</name>
-              <placement>a</placement>
-              <head>Thread Safe:</head>
-            </tag>
-            <tag>
-              <name>requiresDependencyResolution</name>
-              <placement>a</placement>
-              <head>Requires Dependency Resolution:</head>
-            </tag>
-            <tag>
-              <name>requiresProject</name>
-              <placement>a</placement>
-              <head>Requires Project:</head>
-            </tag>
-          </tags>
-          <!-- TODO: This should only be a measure of last resort -->
-          <failOnError>false</failOnError>
-        </configuration>
       </plugin>
     </plugins>
   </reporting>


[09/32] git commit: [flex-falcon] [refs/heads/develop] - Prepare release compiler-jburg-types

Posted by ah...@apache.org.
Prepare release compiler-jburg-types


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

Branch: refs/heads/develop
Commit: 254f62d71d02134a0585e9fdc3446cd19b0e6e23
Parents: d17ae35
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:07:00 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-jburg-types/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/254f62d7/compiler-jburg-types/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-jburg-types/pom.xml b/compiler-jburg-types/pom.xml
index 61d418d..77c973c 100644
--- a/compiler-jburg-types/pom.xml
+++ b/compiler-jburg-types/pom.xml
@@ -30,7 +30,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-jburg-types</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
 
   <name>Apache Flex - FlexJS: JBurg Types</name>
   <description>Types needed by JBurg to perform it's code generation.</description>


[13/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 6a6bda8b2ff655b22bc7f50fb72537cf9fcd866a
Parents: 02d9e93
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:03:18 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6a6bda8b/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 5e7a93c..00169d7 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -17,20 +17,19 @@
   limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
     <version>18</version>
-    <relativePath/>
+    <relativePath />
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -40,7 +39,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
-        <version>3.1</version>
+        <version>3.5</version>
         <configuration>
           <goalPrefix>compiler-build-tools</goalPrefix>
           <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
@@ -154,4 +153,10 @@
     </dependency>
   </dependencies>
 
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/compiler-build-tools-1.0.0</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/compiler-build-tools-1.0.0</developerConnection>
+    <url>https://svn.apache.org/viewvc/maven/pom/tags/compiler-build-tools-1.0.0</url>
+  </scm>
 </project>


[24/32] git commit: [flex-falcon] [refs/heads/develop] - Removed the profiles utils and compiler and removed the enforcer rule to check for profile activation

Posted by ah...@apache.org.
Removed the profiles utils and compiler and removed the enforcer rule to check for profile activation


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

Branch: refs/heads/develop
Commit: 730f8ed1bf21e7f90310dcf92508d68af881cb56
Parents: 6c1df69
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:17:25 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:17:25 2016 +0200

----------------------------------------------------------------------
 pom.xml | 91 ++++++++----------------------------------------------------
 1 file changed, 12 insertions(+), 79 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/730f8ed1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index cb1b0d4..2b3aef2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -95,6 +95,18 @@
     </mailingList>
   </mailingLists>
 
+  <modules>
+    <module>compiler</module>
+    <module>compiler-jx</module>
+    <module>compiler-test-utils</module>
+    <module>debugger</module>
+    <module>flex-compiler-oem</module>
+    <module>flexjs-ant-tasks</module>
+    <!-- Commented out for now -->
+    <!--module>flexjs-maven-extension</module-->
+    <module>flexjs-maven-plugin</module>
+  </modules>
+
   <!--
       As the compiler needs artifacts that are part of this project, the build
       will fail, if the utility artifacts compiler-build-tools or compiler-jburg-types
@@ -104,55 +116,6 @@
   -->
   <profiles>
     <profile>
-      <id>utils</id>
-      <properties>
-        <active-profile>utils</active-profile>
-      </properties>
-      <modules>
-        <module>compiler-build-tools</module>
-        <module>compiler-jburg-types</module>
-      </modules>
-
-      <!-- For now we'll skip RAT for the utils profile -->
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.rat</groupId>
-            <artifactId>apache-rat-plugin</artifactId>
-            <configuration>
-              <includes>
-                <include>compiler-build-tools/**</include>
-                <include>compiler-jburg-types/**</include>
-              </includes>
-              <excludes/>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-
-    <profile>
-      <id>compiler</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-      </activation>
-      <properties>
-        <active-profile>compiler</active-profile>
-      </properties>
-      <modules>
-        <module>compiler</module>
-        <module>compiler-jx</module>
-        <module>compiler-test-utils</module>
-        <module>debugger</module>
-        <module>flex-compiler-oem</module>
-        <module>flexjs-ant-tasks</module>
-        <!-- Commented out for now -->
-        <!--module>flexjs-maven-extension</module-->
-        <module>flexjs-maven-plugin</module>
-      </modules>
-    </profile>
-
-    <profile>
       <id>apache-release</id>
       <properties>
         <website.path>${project.version}</website.path>
@@ -208,36 +171,6 @@
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-enforcer-plugin</artifactId>
-        <version>1.4.1</version>
-        <executions>
-          <execution>
-            <id>enforce at least one profile activation</id>
-            <goals>
-              <goal>enforce</goal>
-            </goals>
-            <configuration>
-              <rules>
-                <!--
-                    The profiles are only available if they are defined in the
-                    current pom. So we would have to define all profiles in each
-                    child pom. Using a property defined in the profiles makes this
-                    property available in all children, so we use this to check
-                    if a profile was selected.
-                -->
-                <requireProperty>
-                  <property>active-profile</property>
-                  <message>You must select one of the profiles 'utils', 'compiler' or 'externs' using the '-P{profilename}' commandline option</message>
-                </requireProperty>
-              </rules>
-              <fail>true</fail>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <version>3.5.1</version>
         <configuration>


[20/32] git commit: [flex-falcon] [refs/heads/develop] - [maven-release-plugin] prepare for next development iteration

Posted by ah...@apache.org.
[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/develop
Commit: 0db90806899e019d18103dc9ae52881a0b6b904c
Parents: 726cdd4
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:49:34 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0db90806/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 2659600..01a938f 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0</version>
+  <version>1.0.1-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,7 +38,7 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
-    <tag>compiler-build-tools-1.0.0</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <build>


[16/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 06634e8cae3429ae75175eaf36d769f83145bab4
Parents: 26c29cd
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:35:13 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/06634e8c/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 385c396..3927553 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -34,6 +34,12 @@
 
   <name>Apache Flex - FlexJS: Build Tools</name>
 
+  <scm>
+    <connection>scm:git://git.apache.org/flex-falcon.git</connection>
+    <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
+    <url>https://github.com/apache/flex-falcon</url>
+  </scm>
+
   <build>
     <plugins>
       <plugin>


[10/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 02d9e93a1100b898aee5e49d4985e4b9fff0d360
Parents: c0bc4d3
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 08:58:47 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 67 ++++++++++++++++++++++-----------------
 1 file changed, 38 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/02d9e93a/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 932b3d1..5e7a93c 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -66,6 +66,44 @@
         <version>2.10.4</version>
       </plugin>
     </plugins>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.10.4</version>
+          <configuration>
+            <tags>
+              <tag>
+                <name>goal</name>
+                <placement>a</placement>
+                <head>Goal:</head>
+              </tag>
+              <tag>
+                <name>phase</name>
+                <placement>a</placement>
+                <head>Phase:</head>
+              </tag>
+              <tag>
+                <name>threadSafe</name>
+                <placement>a</placement>
+                <head>Thread Safe:</head>
+              </tag>
+              <tag>
+                <name>requiresDependencyResolution</name>
+                <placement>a</placement>
+                <head>Requires Dependency Resolution:</head>
+              </tag>
+              <tag>
+                <name>requiresProject</name>
+                <placement>a</placement>
+                <head>Requires Project:</head>
+              </tag>
+            </tags>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
   <reporting>
@@ -74,35 +112,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.10.4</version>
-        <configuration>
-          <tags>
-            <tag>
-              <name>goal</name>
-              <placement>a</placement>
-              <head>Goal:</head>
-            </tag>
-            <tag>
-              <name>phase</name>
-              <placement>a</placement>
-              <head>Phase:</head>
-            </tag>
-            <tag>
-              <name>threadSafe</name>
-              <placement>a</placement>
-              <head>Thread Safe:</head>
-            </tag>
-            <tag>
-              <name>requiresDependencyResolution</name>
-              <placement>a</placement>
-              <head>Requires Dependency Resolution:</head>
-            </tag>
-            <tag>
-              <name>requiresProject</name>
-              <placement>a</placement>
-              <head>Requires Project:</head>
-            </tag>
-          </tags>
-        </configuration>
       </plugin>
     </plugins>
   </reporting>


[27/32] git commit: [flex-falcon] [refs/heads/develop] - - Updated the scm git urls

Posted by ah...@apache.org.
- Updated the scm git urls


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

Branch: refs/heads/develop
Commit: 03e110c05908d5700a93fe7714d45971f5f01abc
Parents: 293e9da
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:43:11 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:43:11 2016 +0200

----------------------------------------------------------------------
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/03e110c0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 8bd6aba..3297403 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,8 +36,8 @@
   <description>The Apache Flex FlexJS Project</description>
 
   <scm>
-    <connection>scm:git://git.apache.org/flex-falcon.git</connection>
-    <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
+    <connection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</connection>
+    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
   </scm>
 


[23/32] git commit: [flex-falcon] [refs/heads/develop] - Updated the dependencies to jburg types and build tools to the released versions

Posted by ah...@apache.org.
Updated the dependencies to jburg types and build tools to the released versions


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

Branch: refs/heads/develop
Commit: 6c1df6908827eccebc2ae281bcb9b6eebd2e00b7
Parents: 4576e15
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:11:50 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:11:50 2016 +0200

----------------------------------------------------------------------
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6c1df690/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 218b303..cb1b0d4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,8 +51,8 @@
     <flash.version>20.0</flash.version>
     <air.version>20.0</air.version>
 
-    <compiler-build-tools.version>1.0.0-SNAPSHOT</compiler-build-tools.version>
-    <compiler-jburg-types.version>1.0.0-SNAPSHOT</compiler-jburg-types.version>
+    <compiler-build-tools.version>1.0.0</compiler-build-tools.version>
+    <compiler-jburg-types.version>1.0.0</compiler-jburg-types.version>
 
     <!-- URL of the ASF SonarQube server -->
     <sonar.host.url>https://analysis.apache.org/</sonar.host.url>


[04/32] git commit: [flex-falcon] [refs/heads/develop] - restore releasecandidate script

Posted by ah...@apache.org.
restore releasecandidate script


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

Branch: refs/heads/develop
Commit: 7cfd14b91cfa9a83c7c4337141216cbc845730d7
Parents: c2944b3
Author: Alex Harui <ah...@apache.org>
Authored: Sat Sep 3 23:21:46 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sat Sep 3 23:21:46 2016 -0700

----------------------------------------------------------------------
 releasecandidate.xml | 496 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 496 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7cfd14b9/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/releasecandidate.xml b/releasecandidate.xml
new file mode 100644
index 0000000..2044b02
--- /dev/null
+++ b/releasecandidate.xml
@@ -0,0 +1,496 @@
+<?xml version="1.0"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+
+<project name="CreateFalconReleaseCandidate" default="main" basedir=".">
+
+
+    <!-- Required for OSX 10.6 / Snow Leopard Performance. -->
+    <!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only -->
+    <!-- local.d32 is set/used in build.properties so this needs to be done first. -->
+    <condition property="local.d32" value="-d32">
+        <and>
+            <os family="windows"/>
+            <equals arg1="${sun.arch.data.model}" arg2="64"/>
+            <equals arg1="${os.arch}" arg2="x86_64"/>
+            <equals arg1="${ant.java.version}" arg2="1.6"/>
+        </and>
+    </condition>
+
+    <condition property="isMac" value="mac">
+        <os family="mac" />
+    </condition>
+    <condition property="isWindows" value="windows">
+        <os family="windows" />
+    </condition>
+    <condition property="isLinux" value="linux">
+		<and>
+			<os family="unix" />
+			<not>
+				<isset property="isMac" />
+			</not>
+		</and>
+    </condition>
+	
+	<property name="rat.report" value="${basedir}/rat-report.txt"/>
+	<property name="apache.rat.jar" value="apache-rat-0.8.jar" />
+	<property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.8.jar" />
+	<property name="apache.rat.url" value="http://people.apache.org/~aharui/rat" />
+    
+	<property file="${basedir}/local.properties" />
+	<property file="${basedir}/build.properties" />
+	   
+    <property environment="env"/>
+    
+	<condition property="do.copy.downloads" >
+		<isset property="download.cache.dir" /> 
+	</condition>
+	
+    <condition property="CRLF" value="%0D%0A">
+        <isset property="isWindows" />
+    </condition>
+    <property name="CRLF" value="%0A" />
+    
+    <fail message="The my.name property is not set to the RM's name"
+    unless="my.name"/>
+    
+    <fail message="The ANT_HOME environment variable is not set."
+        unless="env.ANT_HOME"/>
+		
+	<available file="${svn.dist.dev}"
+		type="dir" 
+		property="dist.dev" value="${svn.dist.dev}" />
+    
+	<fail message="The svn.dist.dev property is not set to the working copy for https://dist.apache.org/repos/dist/dev."
+        unless="dist.dev"/>
+				
+	<available file="${svn.site}"
+		type="dir" 
+		property="site" value="${svn.site}" />
+    
+	<fail message="The svn.site property is not set to the working copy for https://flex.apache.org."
+        unless="site"/>
+				
+	<available file="${env.AIR_HOME}"
+		type="dir" 
+		property="AIR_HOME" value="${env.AIR_HOME}" />
+
+    <fail message="The AIR_HOME property is not set in environment or command-line."
+        unless="AIR_HOME"/>
+		
+    <available file="${env.PLAYERGLOBAL_HOME}"
+        type="dir"
+        property="PLAYERGLOBAL_HOME" value="${env.PLAYERGLOBAL_HOME}" />
+    
+    <fail message="The PLAYERGLOBAL_HOME property is not set in environment or command-line."
+        unless="PLAYERGLOBAL_HOME"/>
+    
+    <available file="${env.FLASHPLAYER_DEBUGGER}"
+        type="dir"
+        property="FLASHPLAYER_DEBUGGER" value="${env.FLASHPLAYER_DEBUGGER}" />
+    
+    <available file="${env.FLASHPLAYER_DEBUGGER}"
+        type="file"
+        property="FLASHPLAYER_DEBUGGER" value="${env.FLASHPLAYER_DEBUGGER}" />
+    
+    <fail message="The FLASHPLAYER_DEBUGGER property is not set in environment or command-line."
+        unless="FLASHPLAYER_DEBUGGER"/>
+        
+    <available file="${env.ProgramFiles}/Mozilla Firefox/firefox.exe"
+		type="file"
+		property="browser" value="${env.ProgramFiles}/Mozilla Firefox/firefox.exe" />
+    <available file="${env.ProgramFiles(x86)}/Mozilla Firefox/firefox.exe"
+		type="file"
+		property="browser" value="${env.ProgramFiles}/Mozilla Firefox/firefox.exe" />
+    <available file="/Applications/Firefox.app/Contents/MacOS/firefox"
+		type="file"
+		property="browser" value="/Applications/Firefox.app/Contents/MacOS/firefox" />
+        
+    <available file="${env.ANT_HOME}/lib/${apache.rat.jar}"
+        type="file"
+        property="apache.rat.found"/>
+    <available file="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}"
+        type="file"
+        property="apache.rat.tasks.found"/>
+		
+    <fail message="Could not locate Firefox.  Please specify a browser with
+    -Dbrowser=&lt;path-to-browser&gt;"
+        unless="browser"/>
+        
+    <available file="${env.ProgramFiles}/SlikSVN/bin/svn.exe"
+		type="file"
+		property="svn" value="${env.ProgramFiles}/SlikSVN/bin/svn.exe" />
+    <available file="${env.ProgramFiles(x86)}/SlikSVN/bin/svn.exe"
+		type="file"
+		property="svn" value="${env.ProgramFiles}/SlikSVN/bin/svn.exe" />
+    <available file="/opt/subversion/bin/svn"
+		type="file"
+		property="svn" value="/opt/subversion/bin/svn" />
+    <fail message="Could not locate SVN command-line.  Please specify the path to SVN with
+    -Dsvn=&lt;path-to-svn&gt;"
+        unless="svn"/>
+                
+    <available file="${env.ProgramFiles}/Git/bin/git.exe"
+		type="file"
+		property="git" value="${env.ProgramFiles}/Git/bin/git.exe" />
+    <available file="${env.ProgramFiles(x86)}/Git/bin/git.exe"
+		type="file"
+		property="git" value="${env.ProgramFiles}/Git/bin/git.exe" />
+    <available file="/usr/local/git/bin/git"
+		type="file"
+		property="git" value="/usr/local/git/bin/git" />
+    <fail message="Could not locate Git command-line.  Please specify the path to Git with
+    -Dgit=&lt;path-to-git&gt;"
+        unless="git"/>
+        
+    <available file="${env.ANT_HOME}/lib/${apache.rat.jar}"
+        type="file"
+        property="apache.rat.found"/>
+    <available file="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}"
+        type="file"
+        property="apache.rat.tasks.found"/>
+		
+    <fail message="Could not locate Firefox.  Please specify a browser with
+    -Dbrowser=&lt;path-to-browser&gt;"
+        unless="browser"/>
+    <fail message="The release candidate number is not set.  Specify -Drc=&lt;rc number (e.g. 1, 2, 3, etc)&gt;"
+    unless="rc"/>
+	
+	<target name="install-rat" depends="install-rat.jar,install-rat.tasks.jar" />
+	<target name="install-rat.jar" unless="apache.rat.found">
+		<get src="${apache.rat.url}/${apache.rat.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.jar}" />
+	</target>
+	<target name="install-rat.tasks.jar" unless="apache.rat.tasks.found">
+		<get src="${apache.rat.url}/${apache.rat.tasks.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}" />
+	</target>
+	
+    <target name="rat-taskdef" description="Rat taskdef">
+        <typedef resource="org/apache/rat/anttasks/antlib.xml"
+        uri="antlib:org.apache.rat.anttasks"
+        classpathref="anttask.classpath"/>
+    </target>
+
+    <target name="main" depends="install-rat,credentials" description="Perform required release approval steps">
+		<antcall target="check-new-version" />
+		<exec executable="${git}" dir="${basedir}" failonerror="true" >
+			<arg value="pull" />
+			<arg value="--rebase" />
+		</exec>
+		<ant antfile="build.xml" target="release" />
+		<ant antfile="build.xml" target="create-md5" />
+		<ant antfile="build.xml" target="sign" />
+		<mkdir dir="${dist.dev}/flex/falcon/${release.version}/rc${rc}/binaries" />
+		<copy todir="${dist.dev}/flex/falcon/${release.version}/rc${rc}" >
+			<fileset dir="${basedir}/out" >
+				<include name="apache-flex-falconjx-${release.version}-src*" />
+			</fileset>
+		</copy>
+		<copy todir="${dist.dev}/flex/falcon/${release.version}/rc${rc}/binaries" >
+			<fileset dir="${basedir}/out" >
+				<include name="apache-flex-falconjx-${release.version}-bin*" />
+			</fileset>
+		</copy>
+		<copy file="${basedir}/README" tofile="${dist.dev}/flex/falcon/${release.version}/rc${rc}/READme" />
+		<copy file="${basedir}/ApproveFalcon.xml" tofile="${dist.dev}/flex/falcon/${release.version}/rc${rc}/ApproveFalcon.xml" />
+		<copy file="${basedir}/apache-flex-falconjx-installer-config.xml" tofile="${dist.dev}/flex/falcon/${release.version}/rc${rc}/binaries/apache-flex-falconjx-installer-config.xml" />
+        <exec executable="${svn}" dir="${dist.dev}/flex/falcon" failonerror="true" >
+            <arg value="update" />
+        </exec>
+		<exec executable="${svn}" dir="${dist.dev}/flex/falcon" failonerror="true" >
+			<arg value="add" />
+			<arg value="${dist.dev}/flex/falcon/${release.version}/rc${rc}" />
+		</exec>
+		<exec executable="${svn}" dir="${dist.dev}/flex/falcon" failonerror="true" >
+			<arg value="commit" />
+			<arg value="--username" />
+			<arg value="${apache.username}" />
+			<arg value="--password" />
+			<arg value="${apache.password}" />
+			<arg value="-m" />
+			<arg value="rc${rc} of Apache Flex Falcon ${release.version}" />
+		</exec>
+		<exec executable="${git}" dir="${basedir}" failonerror="true" >
+			<arg value="tag" />
+			<arg value="-a" />
+			<arg value="apache-flex-falcon-${release.version}-rc${rc}" />
+			<arg value="-m" />
+			<arg value="&quot;rc${rc} of apache-flex-falcon-${release.version}&quot;" />
+		</exec>
+		<exec executable="${git}" dir="${basedir}" failonerror="true" >
+			<arg value="push" />
+			<arg value="--tags" />
+		</exec>
+		<antcall target="update-installer-config" />
+		<antcall target="mail" />
+    </target>
+
+	<target name="credentials" depends="get-username,get-password">
+		<echo>${apache.username}</echo>
+		<echo>${apache.password}</echo>
+	</target>
+	<target name="get-username" unless="apache.username" >
+        <input
+        message="Enter Apache account username:"
+        addproperty="apache.username"/>
+        <condition property="have.username">
+			<not>
+				<equals trim="true" arg1="" arg2="${apache.username}"/>
+			</not>
+        </condition>
+		<fail message="The apache.username property is not set.  It should be the username for Apache SVN and Git."
+			unless="have.username"/>
+	</target>
+	<target name="get-password" unless="apache.password" >
+        <input
+        message="Enter Apache account password:"
+        addproperty="apache.password"/>
+        <condition property="have.password">
+			<not>
+				<equals trim="true" arg1="" arg2="${apache.password}"/>
+			</not>
+        </condition>
+		<fail message="The apache.password property is not set.  It should be the password for Apache SVN and Git."
+			unless="have.password"/>
+	</target>
+	
+	<target name="update-installer-config" >
+		<exec executable="${svn}" dir="${site}" failonerror="true" >
+			<arg value="update" />
+			<arg value="trunk/content/installer/sdk-installer-config-4.0.xml" />
+		</exec>
+        <replaceregexp byline="true">
+            <regexp pattern="developmentVersion=&quot;${release.version}&quot; rc=&quot;rc.*&quot; latestVersion"/>
+            <substitution expression="developmentVersion=&quot;${release.version}&quot; rc=&quot;rc${rc}&quot; latestVersion"/>
+            <fileset dir="${site}/trunk/content/installer">
+                <include name="sdk-installer-config-4.0.xml"/>
+            </fileset>
+        </replaceregexp>
+		<exec executable="${svn}" dir="${site}" failonerror="true" >
+			<arg value="commit" />
+			<arg value="--username" />
+			<arg value="${apache.username}" />
+			<arg value="--password" />
+			<arg value="${apache.password}" />
+			<arg value="-m" />
+			<arg value="&quot;update sdk-installer-config-4.0 for falcon ${release.version} rc${rc}&quot;" />
+		</exec>
+		<!-- pause to give buildbot chance to react -->
+		<sleep seconds="5" />
+		<get src="https://cms.apache.org/flex/publish" username="${apache.username}" password="${apache.password}" dest="${basedir}/getresult.txt" />
+		<delete file="${basedir}/getresult.txt" />
+	</target>
+
+	<target name="update-installer-config-release" depends="credentials">
+		<exec executable="${svn}" dir="${site}" failonerror="true" >
+			<arg value="update" />
+			<arg value="trunk/content/installer/sdk-installer-config-4.0.xml" />
+		</exec>
+        <xmlproperty file="${site}/trunk/content/installer/sdk-installer-config-4.0.xml" semanticAttributes="true" collapseAttributes="true"/>
+		<property name="latest.release" value="${config.products.ApacheFlexFalconJX.latestVersion}" />
+        <replaceregexp byline="true" flags="g">
+            <regexp pattern="ApacheFlexFalconJX(.*)latestVersion=&quot;${latest.release}&quot;(.*)"/>
+            <substitution expression="ApacheFlexFalconJX\1latestVersion=&quot;${release.version}&quot;\2"/>
+            <fileset dir="${site}/trunk/content/installer">
+                <include name="sdk-installer-config-4.0.xml"/>
+            </fileset>
+        </replaceregexp>
+		<exec executable="${svn}" dir="${site}" failonerror="true" >
+			<arg value="commit" />
+			<arg value="--username" />
+			<arg value="${apache.username}" />
+			<arg value="--password" />
+			<arg value="${apache.password}" />
+			<arg value="-m" />
+			<arg value="&quot;update sdk-installer-config-4.0 and other files for flex sdk ${release.version} rc${rc}&quot;" />
+		</exec>
+		<!-- pause to give buildbot chance to react -->
+		<sleep seconds="5" />
+		<get src="https://cms.apache.org/flex/publish" username="${apache.username}" password="${apache.password}" dest="${basedir}/getresult.txt" />
+		<delete file="${basedir}/getresult.txt" />
+	</target>
+	
+	<target name="check-new-version" description="check if svn folder needs to be added" >
+		<condition property="version.folder" value="${dist.dev}/flex/falcon/${release.version}" >
+			<not>
+				<available file="${dist.dev}/flex/falcon/${release.version}" />
+			</not>
+		</condition>
+		<antcall target="add-version-folder" />
+	</target>
+    
+	<target name="add-version-folder" description="adds svn folder if needed" if="version.folder" >
+		<mkdir dir="${version.folder}" />
+		<exec executable="${svn}" dir="${dist.dev}/flex/falcon" failonerror="true" >
+			<arg value="add" />
+			<arg value="${version.folder}" />
+		</exec>
+	</target>
+		
+    <target name="mail" >
+        <!-- try to set line breaks before the vertical line            | -->
+        <echo file="${basedir}/discussthread.properties">discuss.thread.body=This is the discussion thread.\n\
+\n\
+Changes in this RC include:\n\
+\n\
+\n\
+Thanks,\n\
+${my.name}
+</echo>
+        <replace file="${basedir}/discussthread.properties">
+            <replacefilter token=" " value="%20" />
+            <replacefilter token="\n" value="${CRLF}" />
+        </replace>
+        <property file="${basedir}/discussthread.properties" />
+
+        <!-- try to set line breaks before the vertical line            | -->
+        <echo file="${basedir}/votethread.properties">vote.thread.body=Hi,\n\
+\n\
+This is vote for the ${release.version} release of the FalconJX (and Falcon)\n\
+compilers.  There is no separate Falcon-only release package at\n\
+this time.  The only purpose of the FalconJX packages are to serve as\n\
+upstream packages for the FlexJS release.\n\
+\n\
+The release candidate can be found here;\n\
+https://dist.apache.org/repos/dist/dev/flex/falcon/${release.version}/rc${rc}/\n\
+\n\
+Before voting please review the section, 'What are the ASF requirements on\n\
+approving a release?', at:\n\
+http://www.apache.org/dev/release.html#approving-a-release\n\
+\n\
+At a minimum you would be expected to check that:\n\
+- MD5 and signed packages are correct\n\
+- README, RELEASE_NOTES, NOTICE and LICENSE files are all fine\n\
+- That the build script completes successfully\n\
+- That you can compile using the results of building the source package\n\
+\n\
+The source package is set up the same way as the repo.  This means that\n\
+the results of the build are not the same as the binary package.  The\n\
+compiled source package can be used to build FlexJS apps via the command\n\
+line and Ant, but not in Flash Builder or other IDEs.  You can test the source\n\
+package by building it, then pointing to it from the source package of the\n\
+FlexJS release candidate and building the examples in the FlexJS package.\n\
+\n\
+The binary package is set up as an upstream package for the FlexJS\n\
+release.  The most convenient way to use the binary package is to install\n\
+a FlexJS SDK via Ant or the Installer.\n\
+\n\
+Please vote to approve this release:\n\
++1 Approve the release\n\
+-1 Veto 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\
+The vote passes if there is:\n\
+- At least 3 +1 votes from the PMC\n\
+- More positive votes than negative votes\n\
+\n\
+Remember that this is a 'beta-quality' release so there\n\
+will be many bugs found.  The goal is not to try to find and fix bugs\n\
+in the RC, but to make sure we have the packaging right, and enough\n\
+functionality that folks will have some success trying to use it.\n\
+\n\
+People who are not in PMC are also encouraged to test out the release and\n\
+vote, although their votes will not be binding, they can influence how the\n\
+PMC votes.\n\
+\n\
+When voting please indicate what OS, IDE, Flash Player version and AIR\n\
+version you tested with.\n\
+\n\
+Please put all discussion about this release in the DISCUSSION thread not\n\
+this VOTE thread.\n\
+\n\
+For your convenience there is an ant script that automates the common\n\
+steps to validate a release.  Instead of individually downloading the\n\
+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/falcon/${release.version}/rc${rc}/ApproveFalcon.xml\n\
+3) run the script: ant -e -f ApproveFalcon.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\
+\n\
+Thanks,\n\
+${my.name}
+</echo>
+        <replace file="${basedir}/votethread.properties">
+            <replacefilter token=" " value="%20" />
+            <replacefilter token="\n" value="${CRLF}" />
+        </replace>
+        <property file="${basedir}/votethread.properties" />
+        <echo file="${basedir}/votethread.html">&lt;html&gt;&lt;body&gt;&lt;a href=&quot;mailto:dev@flex.apache.org?subject=[DISCUSS]%20Discuss%20Release%20Apache%20Flex%20FalconJX%20${release.version}%20RC${rc}&amp;body=${discuss.thread.body}&quot;&gt;Click here to review discuss thread&lt;/a&gt;&lt;br/&gt;&lt;a href=&quot;mailto:dev@flex.apache.org?subject=[VOTE]%20Release%20Apache%20Flex%20FalconJX%20${release.version}%20RC${rc}&amp;body=${vote.thread.body}&quot;&gt;Click here to review vote thread&lt;/a&gt;&lt;/body&gt;&lt;/html&gt;</echo>
+        <makeurl file="${basedir}/votethread.html" property="vote.thread.url" />
+        <exec executable="${browser}">
+            <arg value="${vote.thread.url}" />
+        </exec>
+		<delete file="${basedir}/votethread.properties" />
+		<delete file="${basedir}/votethread.html" />
+		<delete file="${basedir}/discussthread.properties" />
+    </target>
+
+	<target name="release" depends="credentials" >
+		<available file="${svn.dist.release}"
+			type="dir" 
+			property="dist.release" value="${svn.dist.release}" />
+    
+		<fail message="The svn.dist.release property is not set to the working copy for https://dist.apache.org/repos/dist/release."
+			unless="dist.release"/>
+				
+		<exec executable="${svn}" dir="${dist.release}/flex" failonerror="true" >
+			<arg value="update" />
+		</exec>
+		<exec executable="${svn}" dir="${dist.release}/flex/falcon" failonerror="true" >
+			<arg value="mv" />
+			<arg value="${dist.dev}/flex/falcon/${release.version}/rc${rc}" />
+            <arg value="${dist.release}/flex/falcon/${release.version}" />
+		</exec>
+		<exec executable="${svn}" dir="${dist.release}/flex/falcon" failonerror="true" >
+			<arg value="commit" />
+			<arg value="--username" />
+			<arg value="${apache.username}" />
+			<arg value="--password" />
+			<arg value="${apache.password}" />
+			<arg value="-m" />
+			<arg value="Apache Flex Falcon ${release.version}" />
+		</exec>
+        <antcall target="release.tag" />
+		<exec executable="${git}" dir="${basedir}" failonerror="true" >
+			<arg value="push" />
+			<arg value="--tags" />
+		</exec>
+		<echo>Wait at least 24 hours before running update-installer-config-release target</echo>
+	</target>
+	
+    <target name="release.tag" >
+        <exec executable="${git}" dir="${basedir}" failonerror="true" output="${basedir}/taghash.txt">
+            <arg value="show" />
+            <arg value="apache-flex-falcon-${release.version}-rc${rc}" />
+        </exec>
+        <replaceregexp file="${basedir}/taghash.txt" match="(.*).commit (.*).Author(.*)" replace="\2" byline="false" flags="s" />
+        <loadfile srcFile="${basedir}/taghash.txt" property="releasehash" />
+        <exec executable="${git}" dir="${basedir}" failonerror="true" >
+            <arg value="tag" />
+            <arg value="-a" />
+            <arg value="apache-flex-falcon-${release.version}" />
+            <arg value="${releasehash}" />
+            <arg value="-m" />
+            <arg value="&quot;Official release of apache-flex-falcon-${release.version}&quot;" />
+        </exec>
+    </target>
+</project>


[19/32] git commit: [flex-falcon] [refs/heads/develop] - [maven-release-plugin] prepare release compiler-build-tools-1.0.0

Posted by ah...@apache.org.
[maven-release-plugin] prepare release compiler-build-tools-1.0.0


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

Branch: refs/heads/develop
Commit: 4a0f15f23a3a0bb3d8e736f450053c10bf7106c2
Parents: 06634e8
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:35:35 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4a0f15f2/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 3927553..eee9a13 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,6 +38,7 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
+    <tag>compiler-build-tools-1.0.0</tag>
   </scm>
 
   <build>


[18/32] git commit: [flex-falcon] [refs/heads/develop] - [maven-release-plugin] prepare release compiler-build-tools-1.0.0

Posted by ah...@apache.org.
[maven-release-plugin] prepare release compiler-build-tools-1.0.0


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

Branch: refs/heads/develop
Commit: f121352cc8d88f01ba81ffcdccb5cd15f29197f0
Parents: 1178b30
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:42:09 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/f121352c/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 8fc2fb7..6cdb464 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,6 +38,7 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
+    <tag>compiler-build-tools-1.0.0</tag>
   </scm>
 
   <build>


[28/32] git commit: [flex-falcon] [refs/heads/develop] - [maven-release-plugin] prepare release flexjs-compiler-parent-0.7.0

Posted by ah...@apache.org.
[maven-release-plugin] prepare release flexjs-compiler-parent-0.7.0


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

Branch: refs/heads/develop
Commit: ada2c42492fa9d5b32bdfa74d0569df7daf59c8e
Parents: 03e110c
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:54:46 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:54:46 2016 +0200

----------------------------------------------------------------------
 compiler-jx/pom.xml         | 11 +++++------
 compiler-test-utils/pom.xml |  7 +++----
 compiler/pom.xml            | 11 +++++------
 debugger/pom.xml            |  9 ++++-----
 flex-compiler-oem/pom.xml   | 11 +++++------
 flexjs-ant-tasks/pom.xml    |  7 +++----
 flexjs-maven-plugin/pom.xml | 11 +++++++----
 pom.xml                     |  8 ++++----
 8 files changed, 36 insertions(+), 39 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/compiler-jx/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index bb2e10e..490fe29 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -17,19 +17,18 @@
   limitations under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-jx</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
 
   <name>Apache Flex - FlexJS: Compiler: Compiler-JX</name>
 
@@ -82,7 +81,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
     </dependency>
 
     <dependency>
@@ -109,7 +108,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler-test-utils</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/compiler-test-utils/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 80b8df8..ba0be8a 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -17,19 +17,18 @@
   limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-test-utils</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
 
   <name>Apache Flex - FlexJS: Compiler: Test Utils</name>
   <description>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/compiler/pom.xml
----------------------------------------------------------------------
diff --git a/compiler/pom.xml b/compiler/pom.xml
index a13bddc..ccd2d11 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -17,19 +17,18 @@
   limitations under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
 
   <name>Apache Flex - FlexJS: Compiler: Compiler</name>
   <description>The Apache Flex Falcon Compiler</description>
@@ -133,7 +132,7 @@
               <executable>java</executable>
               <arguments>
                 <argument>-classpath</argument>
-                <classpath/>
+                <classpath />
                 <arguments>antlr.Tool</arguments>
                 <argument>-o</argument>
                 <argument>../../../../../../../../../../target/generated-sources/antlr/org/apache/flex/compiler/internal/parsing/as</argument>
@@ -416,7 +415,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler-test-utils</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/debugger/pom.xml
----------------------------------------------------------------------
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 80a6be7..cf637cb 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -17,19 +17,18 @@
   limitations under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>debugger</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
 
   <name>Apache Flex - FlexJS: Compiler: Debugger</name>
 
@@ -84,7 +83,7 @@ Do all the JBurg code generation.
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.compiler</groupId>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/flex-compiler-oem/pom.xml
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index a2e0c99..51a0bfb 100644
--- a/flex-compiler-oem/pom.xml
+++ b/flex-compiler-oem/pom.xml
@@ -17,19 +17,18 @@
   limitations under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>flex-compiler-oem</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
 
   <name>Apache Flex - FlexJS: Compiler: OEM Layer</name>
 
@@ -37,12 +36,12 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler-jx</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.compiler</groupId>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/flexjs-ant-tasks/pom.xml
----------------------------------------------------------------------
diff --git a/flexjs-ant-tasks/pom.xml b/flexjs-ant-tasks/pom.xml
index edc14af..664aa78 100644
--- a/flexjs-ant-tasks/pom.xml
+++ b/flexjs-ant-tasks/pom.xml
@@ -17,19 +17,18 @@
   limitations under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>flexjs-ant-tasks</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
 
   <name>Apache Flex - FlexJS: FlexJS Ant Tasks</name>
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/flexjs-maven-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/flexjs-maven-plugin/pom.xml b/flexjs-maven-plugin/pom.xml
index 42badf7..91505aa 100644
--- a/flexjs-maven-plugin/pom.xml
+++ b/flexjs-maven-plugin/pom.xml
@@ -17,20 +17,19 @@
   limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache</groupId>
     <artifactId>apache</artifactId>
     <version>18</version>
-    <relativePath></relativePath>
+    <relativePath />
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>flexjs-maven-plugin</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: FlexJS Maven Plugin</name>
@@ -136,4 +135,8 @@
     </plugins>
   </build>
 
+
+  <scm>
+    <tag>flexjs-compiler-parent-0.7.0</tag>
+  </scm>
 </project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ada2c424/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3297403..bdd3ce1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,8 +17,7 @@
   limitations under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -29,7 +28,7 @@
 
   <groupId>org.apache.flex.flexjs</groupId>
   <artifactId>flexjs-compiler-parent</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Compiler: Parent</name>
@@ -39,6 +38,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
+    <tag>flexjs-compiler-parent-0.7.0</tag>
   </scm>
 
   <properties>
@@ -360,7 +360,7 @@
               <imagesdir>images</imagesdir>
               <imagesoutdir>${project.build.directory}/site/images</imagesoutdir>
               <sectanchors>true</sectanchors>
-              <idprefix/>
+              <idprefix />
               <idseparator>-</idseparator>
               <source-highlighter>coderay</source-highlighter>
               <coderay-css>style</coderay-css>


[06/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 7913f2bc985ec694911ab8b821ba50fc6bc0434e
Parents: 0db9080
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:53:18 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7913f2bc/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 01a938f..8d1f65a 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.1-SNAPSHOT</version>
+  <version>1.0.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,7 +38,6 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
-    <tag>HEAD</tag>
   </scm>
 
   <build>
@@ -83,7 +82,7 @@
           <dependency>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-scm-plugin</artifactId>
-            <version>1.9.5</version>
+            <version>1.8.1</version>
           </dependency>
         </dependencies>
       </plugin>


[14/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 32b2ddaf3105ea94c20284835600b14cca444945
Parents: 3625564
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:04:45 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/32b2ddaf/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 90cf6fd..385c396 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -153,10 +153,4 @@
     </dependency>
   </dependencies>
 
-
-  <scm>
-    <connection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/compiler-build-tools-1.0.0</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/compiler-build-tools-1.0.0</developerConnection>
-    <url>https://svn.apache.org/viewvc/maven/pom/tags/compiler-build-tools-1.0.0</url>
-  </scm>
 </project>


[05/32] git commit: [flex-falcon] [refs/heads/develop] - try to get release script to honor tag

Posted by ah...@apache.org.
try to get release script to honor tag


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

Branch: refs/heads/develop
Commit: c0bc4d3b230b2a0508c1fdaec1b3ab87419d5d9a
Parents: 7cfd14b
Author: Alex Harui <ah...@apache.org>
Authored: Sun Sep 4 07:12:45 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Sep 4 07:12:45 2016 -0700

----------------------------------------------------------------------
 releasecandidate.xml | 35 ++++++++++++++++++++++++-----------
 1 file changed, 24 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c0bc4d3b/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/releasecandidate.xml b/releasecandidate.xml
index 2044b02..ad7cf62 100644
--- a/releasecandidate.xml
+++ b/releasecandidate.xml
@@ -20,6 +20,7 @@
 
 <project name="CreateFalconReleaseCandidate" default="main" basedir=".">
 
+    <!-- use -Dtag=<tag or commit hash> to build from other than the head -->
 
     <!-- Required for OSX 10.6 / Snow Leopard Performance. -->
     <!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only -->
@@ -185,6 +186,13 @@
         uri="antlib:org.apache.rat.anttasks"
         classpathref="anttask.classpath"/>
     </target>
+    
+    <target name="checkout_tag" if="tag" >
+        <exec executable="${git}" dir="${basedir}" failonerror="true" >
+            <arg value="checkout" />
+            <arg value="${tag}" />
+        </exec>
+    </target>
 
     <target name="main" depends="install-rat,credentials" description="Perform required release approval steps">
 		<antcall target="check-new-version" />
@@ -192,6 +200,7 @@
 			<arg value="pull" />
 			<arg value="--rebase" />
 		</exec>
+        <antcall target="checkout_tag" />
 		<ant antfile="build.xml" target="release" />
 		<ant antfile="build.xml" target="create-md5" />
 		<ant antfile="build.xml" target="sign" />
@@ -225,20 +234,24 @@
 			<arg value="-m" />
 			<arg value="rc${rc} of Apache Flex Falcon ${release.version}" />
 		</exec>
-		<exec executable="${git}" dir="${basedir}" failonerror="true" >
-			<arg value="tag" />
-			<arg value="-a" />
-			<arg value="apache-flex-falcon-${release.version}-rc${rc}" />
-			<arg value="-m" />
-			<arg value="&quot;rc${rc} of apache-flex-falcon-${release.version}&quot;" />
-		</exec>
-		<exec executable="${git}" dir="${basedir}" failonerror="true" >
-			<arg value="push" />
-			<arg value="--tags" />
-		</exec>
+        <antcall target="tag_release" />
 		<antcall target="update-installer-config" />
 		<antcall target="mail" />
     </target>
+    
+    <target name="tag_release" unless="tag" >
+        <exec executable="${git}" dir="${basedir}" failonerror="true" >
+            <arg value="tag" />
+            <arg value="-a" />
+            <arg value="apache-flex-falcon-${release.version}-rc${rc}" />
+            <arg value="-m" />
+            <arg value="&quot;rc${rc} of apache-flex-falcon-${release.version}&quot;" />
+        </exec>
+        <exec executable="${git}" dir="${basedir}" failonerror="true" >
+            <arg value="push" />
+            <arg value="--tags" />
+        </exec>
+    </target>
 
 	<target name="credentials" depends="get-username,get-password">
 		<echo>${apache.username}</echo>


[17/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 26c29cd30b7dcc4e244059633fef5530a5fa43fd
Parents: 32b2dda
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:07:42 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 .../org/apache/flex/compiler/tools/unpack/UnpackResourceMojo.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/26c29cd3/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/unpack/UnpackResourceMojo.java
----------------------------------------------------------------------
diff --git a/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/unpack/UnpackResourceMojo.java b/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/unpack/UnpackResourceMojo.java
index 4509906..a943578 100644
--- a/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/unpack/UnpackResourceMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/unpack/UnpackResourceMojo.java
@@ -38,7 +38,7 @@ public class UnpackResourceMojo
     private static final int MEGABYTE = KILOBYTE * 1024;
     private static final int BUFFER_MAX = MEGABYTE;
 
-    @Parameter// (required = true) Actually required, but only by this goal
+    @Parameter
     private String resource;
 
     @Parameter(defaultValue="${project.build.directory}/downloads")


[30/32] git commit: [flex-falcon] [refs/heads/develop] - fix up rc script

Posted by ah...@apache.org.
fix up rc script


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

Branch: refs/heads/develop
Commit: e592939b3ceea83afe22472052a7e7a311c8a072
Parents: 6190f15
Author: Alex Harui <ah...@apache.org>
Authored: Mon Sep 5 06:48:31 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Sep 5 06:48:31 2016 -0700

----------------------------------------------------------------------
 releasecandidate.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/e592939b/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/releasecandidate.xml b/releasecandidate.xml
index ad7cf62..fdcf587 100644
--- a/releasecandidate.xml
+++ b/releasecandidate.xml
@@ -50,9 +50,10 @@
     </condition>
 	
 	<property name="rat.report" value="${basedir}/rat-report.txt"/>
-	<property name="apache.rat.jar" value="apache-rat-0.8.jar" />
-	<property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.8.jar" />
-	<property name="apache.rat.url" value="http://people.apache.org/~aharui/rat" />
+    <property name="apache.rat.jar" value="apache-rat-0.11.jar" />
+    <property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.11.jar" />
+    <property name="apache.rat.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat/0.11" />
+    <property name="apache.rat.tasks.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat-tasks/0.11" />
     
 	<property file="${basedir}/local.properties" />
 	<property file="${basedir}/build.properties" />


[15/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 1178b30671978d78f4d8f48fb29f0469703f7834
Parents: 4a0f15f
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:40:43 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/1178b306/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index eee9a13..8fc2fb7 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0</version>
+  <version>1.0.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,7 +38,6 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
-    <tag>compiler-build-tools-1.0.0</tag>
   </scm>
 
   <build>
@@ -71,6 +70,18 @@
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.10.4</version>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.5.3</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-scm-plugin</artifactId>
+            <version>1.9.5</version>
+          </dependency>
+        </dependencies>
+      </plugin>
     </plugins>
     <pluginManagement>
       <plugins>


[03/32] git commit: [flex-falcon] [refs/heads/develop] - update link in approval script

Posted by ah...@apache.org.
update link in approval script


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

Branch: refs/heads/develop
Commit: c2944b307d890cf03f09b6f4a346e840b1bc7b88
Parents: 471b27f
Author: Alex Harui <ah...@apache.org>
Authored: Sat Aug 20 07:32:46 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sat Aug 20 07:32:46 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c2944b30/ApproveFalcon.xml
----------------------------------------------------------------------
diff --git a/ApproveFalcon.xml b/ApproveFalcon.xml
index 408be37..b732e29 100644
--- a/ApproveFalcon.xml
+++ b/ApproveFalcon.xml
@@ -111,7 +111,7 @@
     unless="release.version"/>
 
     <condition property="package.url.path"
-        value="http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBuild/artifact/out">
+        value="http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon%20release%20branch/lastSuccessfulBuild/artifact/out">
         <not>
             <isset property="rc" />
         </not>


[32/32] git commit: [flex-falcon] [refs/heads/develop] - Merge branch 'release0.7.0' into develop

Posted by ah...@apache.org.
Merge branch 'release0.7.0' into develop


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

Branch: refs/heads/develop
Commit: 51acc75430dc9788facc40843cadbf4a9a13385e
Parents: ce39ed0 001a889
Author: Alex Harui <ah...@apache.org>
Authored: Wed Sep 7 15:40:24 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Sep 7 15:40:24 2016 -0700

----------------------------------------------------------------------
 compiler-build-tools/pom.xml                    |  76 +--
 .../tools/unpack/UnpackResourceMojo.java        |   2 +-
 compiler-jburg-types/pom.xml                    |   2 +-
 compiler-jx/pom.xml                             |  11 +-
 compiler-test-utils/pom.xml                     |   7 +-
 .../org/apache/flex/utils/EnvProperties.java    |   2 +-
 .../flex/utils/FilenameNormalization.java       |   1 +
 compiler/pom.xml                                |  11 +-
 debugger/pom.xml                                |   9 +-
 flex-compiler-oem/pom.xml                       |  11 +-
 flexjs-ant-tasks/pom.xml                        |   7 +-
 flexjs-maven-plugin/pom.xml                     |   8 +-
 pom.xml                                         | 179 +++----
 releasecandidate.xml                            | 515 +++++++++++++++++++
 14 files changed, 650 insertions(+), 191 deletions(-)
----------------------------------------------------------------------



[11/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 362556435ed3dc01dba86ddbbf581f2fd08f2062
Parents: 6a6bda8
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:03:40 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/36255643/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 00169d7..90cf6fd 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0</version>
+  <version>1.0.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>


[12/32] git commit: [flex-falcon] [refs/heads/develop] - Next development iteration

Posted by ah...@apache.org.
Next development iteration


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

Branch: refs/heads/develop
Commit: d17ae3585c5bfbf823bb86ea50f1fa0a7e65e527
Parents: 73d5f3a
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:05:49 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/d17ae358/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index db03820..007bfe8 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0</version>
+  <version>1.1.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>


[22/32] git commit: [flex-falcon] [refs/heads/develop] - [maven-release-plugin] prepare release compiler-build-tools-1.0.0

Posted by ah...@apache.org.
[maven-release-plugin] prepare release compiler-build-tools-1.0.0


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

Branch: refs/heads/develop
Commit: 726cdd49a1cc8b40666aa0bf087adfbfa31cbafa
Parents: 646fd40
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 09:49:24 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/726cdd49/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 942356c..2659600 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
@@ -38,6 +38,7 @@
     <connection>scm:git://git.apache.org/flex-falcon.git</connection>
     <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
+    <tag>compiler-build-tools-1.0.0</tag>
   </scm>
 
   <build>


[25/32] git commit: [flex-falcon] [refs/heads/develop] - - Fixed JavaDoc errors - Changed the JavaDoc configuration to be active in the release.

Posted by ah...@apache.org.
- Fixed JavaDoc errors
- Changed the JavaDoc configuration to be active in the release.


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

Branch: refs/heads/develop
Commit: 027fcda4cc9aaa6d08237630a61bfa4ddfba245c
Parents: 730f8ed
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:21:38 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:21:38 2016 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/flex/utils/EnvProperties.java         | 2 +-
 .../src/main/java/org/apache/flex/utils/FilenameNormalization.java | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/027fcda4/compiler-test-utils/src/main/java/org/apache/flex/utils/EnvProperties.java
----------------------------------------------------------------------
diff --git a/compiler-test-utils/src/main/java/org/apache/flex/utils/EnvProperties.java b/compiler-test-utils/src/main/java/org/apache/flex/utils/EnvProperties.java
index c591964..4bd14c4 100644
--- a/compiler-test-utils/src/main/java/org/apache/flex/utils/EnvProperties.java
+++ b/compiler-test-utils/src/main/java/org/apache/flex/utils/EnvProperties.java
@@ -31,7 +31,7 @@ import java.util.Properties;
  * 
  *  1) unittest.properties 
  *  2) environment variables
- *  3) for key FLEX_HOME & PLAYERGLOBAL_HOME sets a default value.
+ *  3) for key FLEX_HOME &amp; PLAYERGLOBAL_HOME sets a default value.
  */
 public class EnvProperties {
 	

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/027fcda4/compiler-test-utils/src/main/java/org/apache/flex/utils/FilenameNormalization.java
----------------------------------------------------------------------
diff --git a/compiler-test-utils/src/main/java/org/apache/flex/utils/FilenameNormalization.java b/compiler-test-utils/src/main/java/org/apache/flex/utils/FilenameNormalization.java
index 7ef5e68..2d83e76 100644
--- a/compiler-test-utils/src/main/java/org/apache/flex/utils/FilenameNormalization.java
+++ b/compiler-test-utils/src/main/java/org/apache/flex/utils/FilenameNormalization.java
@@ -89,6 +89,7 @@ public class FilenameNormalization
      * Determines whether a file path is in normalized form.
      * 
      * @param path A file path.
+     * @return true if the path is normalized.
      */
     public static boolean isNormalized(String path)
     {


[08/32] git commit: [flex-falcon] [refs/heads/develop] - - Try to get the maven-release-plugin running

Posted by ah...@apache.org.
- Try to get the maven-release-plugin running


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

Branch: refs/heads/develop
Commit: 73d5f3ab336cae93a50e1ff587b29772444c260c
Parents: 7913f2b
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:04:12 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-build-tools/pom.xml | 24 +-----------------------
 1 file changed, 1 insertion(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/73d5f3ab/compiler-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index 8d1f65a..db03820 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -29,17 +29,11 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-build-tools</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: Build Tools</name>
 
-  <scm>
-    <connection>scm:git://git.apache.org/flex-falcon.git</connection>
-    <developerConnection>scm:git://git.apache.org/flex-falcon.git</developerConnection>
-    <url>https://github.com/apache/flex-falcon</url>
-  </scm>
-
   <build>
     <plugins>
       <plugin>
@@ -70,22 +64,6 @@
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.10.4</version>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-release-plugin</artifactId>
-        <version>2.5.3</version>
-        <configuration>
-          <!-- If we push the changes, the build will fail, cause it's in a child directory -->
-          <pushChanges>false</pushChanges>
-        </configuration>
-        <dependencies>
-          <dependency>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-scm-plugin</artifactId>
-            <version>1.8.1</version>
-          </dependency>
-        </dependencies>
-      </plugin>
     </plugins>
     <pluginManagement>
       <plugins>


[29/32] git commit: [flex-falcon] [refs/heads/develop] - [maven-release-plugin] prepare for next development iteration

Posted by ah...@apache.org.
[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/develop
Commit: 6190f15942d6a3ecfb08ea1f1833c03fdcd5eecd
Parents: ada2c42
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:55:12 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:55:12 2016 +0200

----------------------------------------------------------------------
 compiler-jx/pom.xml         | 8 ++++----
 compiler-test-utils/pom.xml | 4 ++--
 compiler/pom.xml            | 6 +++---
 debugger/pom.xml            | 6 +++---
 flex-compiler-oem/pom.xml   | 8 ++++----
 flexjs-ant-tasks/pom.xml    | 4 ++--
 flexjs-maven-plugin/pom.xml | 7 +------
 pom.xml                     | 4 ++--
 8 files changed, 21 insertions(+), 26 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/compiler-jx/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 490fe29..02cc865 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-jx</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: Compiler: Compiler-JX</name>
 
@@ -81,7 +81,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
     </dependency>
 
     <dependency>
@@ -108,7 +108,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler-test-utils</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/compiler-test-utils/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index ba0be8a..51bf944 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-test-utils</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: Compiler: Test Utils</name>
   <description>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/compiler/pom.xml
----------------------------------------------------------------------
diff --git a/compiler/pom.xml b/compiler/pom.xml
index ccd2d11..df712bf 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: Compiler: Compiler</name>
   <description>The Apache Flex Falcon Compiler</description>
@@ -415,7 +415,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler-test-utils</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/debugger/pom.xml
----------------------------------------------------------------------
diff --git a/debugger/pom.xml b/debugger/pom.xml
index cf637cb..3bbba40 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>debugger</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: Compiler: Debugger</name>
 
@@ -83,7 +83,7 @@ Do all the JBurg code generation.
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.compiler</groupId>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/flex-compiler-oem/pom.xml
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index 51a0bfb..8dbc1cd 100644
--- a/flex-compiler-oem/pom.xml
+++ b/flex-compiler-oem/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>flex-compiler-oem</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: Compiler: OEM Layer</name>
 
@@ -36,12 +36,12 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.flexjs.compiler</groupId>
       <artifactId>compiler-jx</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.flex.compiler</groupId>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/flexjs-ant-tasks/pom.xml
----------------------------------------------------------------------
diff --git a/flexjs-ant-tasks/pom.xml b/flexjs-ant-tasks/pom.xml
index 664aa78..184c5ed 100644
--- a/flexjs-ant-tasks/pom.xml
+++ b/flexjs-ant-tasks/pom.xml
@@ -23,12 +23,12 @@
   <parent>
     <groupId>org.apache.flex.flexjs</groupId>
     <artifactId>flexjs-compiler-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>flexjs-ant-tasks</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: FlexJS Ant Tasks</name>
 

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/flexjs-maven-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/flexjs-maven-plugin/pom.xml b/flexjs-maven-plugin/pom.xml
index 91505aa..12e03ec 100644
--- a/flexjs-maven-plugin/pom.xml
+++ b/flexjs-maven-plugin/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>flexjs-maven-plugin</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Flex - FlexJS: FlexJS Maven Plugin</name>
@@ -134,9 +134,4 @@
       </plugin>
     </plugins>
   </build>
-
-
-  <scm>
-    <tag>flexjs-compiler-parent-0.7.0</tag>
-  </scm>
 </project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/6190f159/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bdd3ce1..e49d721 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   <groupId>org.apache.flex.flexjs</groupId>
   <artifactId>flexjs-compiler-parent</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: Compiler: Parent</name>
@@ -38,7 +38,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</developerConnection>
     <url>https://github.com/apache/flex-falcon</url>
-    <tag>flexjs-compiler-parent-0.7.0</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <properties>


[02/32] git commit: [flex-falcon] [refs/heads/develop] - add full text of svg.js license

Posted by ah...@apache.org.
add full text of svg.js license


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

Branch: refs/heads/develop
Commit: 471b27f4da5b182fd7bb2fccf32cf1607617f0ff
Parents: 4a765ac
Author: Alex Harui <ah...@apache.org>
Authored: Sat Aug 20 00:01:56 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sat Aug 20 00:01:56 2016 -0700

----------------------------------------------------------------------
 LICENSE.jx.bin | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/471b27f4/LICENSE.jx.bin
----------------------------------------------------------------------
diff --git a/LICENSE.jx.bin b/LICENSE.jx.bin
index 89f5bbd..f6a69f7 100644
--- a/LICENSE.jx.bin
+++ b/LICENSE.jx.bin
@@ -28,3 +28,28 @@ flex-typedefs/js/target/downloads/svg.js
 This product bundles svg.js from closureidl.googlecode.com available 
 under the BSD 3-Clause license.
 
+Copyright (c) 2012, Denis Zawada
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+    * Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright
+      notice, this list of conditions and the following disclaimer in the
+      documentation and/or other materials provided with the distribution.
+    * Neither the name of the <organization> nor the
+      names of its contributors may be used to endorse or promote products
+      derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+


[07/32] git commit: [flex-falcon] [refs/heads/develop] - Next development iteration

Posted by ah...@apache.org.
Next development iteration


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

Branch: refs/heads/develop
Commit: 4576e158d6ea844eabd6bc87ac3c1f6b3d19b35c
Parents: 254f62d
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 10:07:43 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 10:08:18 2016 +0200

----------------------------------------------------------------------
 compiler-jburg-types/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4576e158/compiler-jburg-types/pom.xml
----------------------------------------------------------------------
diff --git a/compiler-jburg-types/pom.xml b/compiler-jburg-types/pom.xml
index 77c973c..e49e446 100644
--- a/compiler-jburg-types/pom.xml
+++ b/compiler-jburg-types/pom.xml
@@ -30,7 +30,7 @@
 
   <groupId>org.apache.flex.flexjs.compiler</groupId>
   <artifactId>compiler-jburg-types</artifactId>
-  <version>1.0.0</version>
+  <version>1.1.0-SNAPSHOT</version>
 
   <name>Apache Flex - FlexJS: JBurg Types</name>
   <description>Types needed by JBurg to perform it's code generation.</description>