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:42:13 UTC

[01/13] flex-typedefs git commit: ignore output files

Repository: flex-typedefs
Updated Branches:
  refs/heads/master cbdba0795 -> 6ce610142


ignore output files


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

Branch: refs/heads/master
Commit: f160f7cad6cd06118615d172c6f0c2fcd0a6a5f3
Parents: cbdba07
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jul 18 21:07:42 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jul 18 21:07:42 2016 -0700

----------------------------------------------------------------------
 .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/f160f7ca/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4cb51c5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,45 @@
+# eclipse conf file
+.settings
+.classpath
+.project
+.manager
+.scala_dependencies
+.cache
+
+# idea conf files
+.idea
+*.iml
+*.ipr
+*.iws
+*.eml
+
+#OS junk files
+[Tt]humbs.db
+*.DS_Store
+/jenkins/
+
+# Maven files
+target/
+
+local.properties
+env.properties
+
+out/
+temp/
+rat.report
+
+# files copied from flex-sdk
+swfutils/
+
+# files copied from google closure compiler
+externs/js/externs
+externs/jquery/externs
+externs/jasmine/externs
+externs/createjs/externs
+externs/createjs/in
+externs/google_maps/externs
+externs/node/externs
+
+# debugger output folders
+debugger/bin/
+debugger/generated/


[07/13] flex-typedefs git commit: - Added a settings-template.xml to the typedefs repo

Posted by ah...@apache.org.
- Added a settings-template.xml to the typedefs repo


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

Branch: refs/heads/master
Commit: 06926519e16e24682d9504c5d1e7ad250b8cad98
Parents: 02e9072
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Thu Jul 21 10:56:17 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Thu Jul 21 10:56:32 2016 +0200

----------------------------------------------------------------------
 settings-template.xml | 73 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/06926519/settings-template.xml
----------------------------------------------------------------------
diff --git a/settings-template.xml b/settings-template.xml
new file mode 100644
index 0000000..ab5cc96
--- /dev/null
+++ b/settings-template.xml
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+ 
+ http://www.apache.org/licenses/LICENSE-2.0
+ 
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ 
+ -->
+<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"
+          xmlns="http://maven.apache.org/SETTINGS/1.1.0"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+    <!-- Tell maven to place downloaded files relative to this settings file -->
+    <!--localRepository>.mvn/repository</localRepository-->
+
+    <!-- If you need to use a proxy, comment in this section -->
+    <!--proxies>
+        <proxy>
+            <active>true</active>
+            <protocol>proxy-protocol (http/https)</protocol>
+            <host>proxy-host</host>
+            <port>proxy-port</port>
+        </proxy>
+    </proxies-->
+
+    <!-- Profile that adds the apache snapshot repo to maven -->
+    <profiles>
+        <profile>
+            <id>apache-snapshots-enabled</id>
+            <!--Enable snapshots for the built in central repo and plugin repo -->
+            <repositories>
+                <repository>
+                    <id>apache-snapshots</id>
+                    <url>http://repository.apache.org/snapshots/</url>
+                    <releases>
+                        <enabled>false</enabled>
+                    </releases>
+                    <snapshots>
+                        <enabled>true</enabled>
+                    </snapshots>
+                </repository>
+            </repositories>
+            <pluginRepositories>
+                <pluginRepository>
+                    <id>apache-snapshots</id>
+                    <url>http://repository.apache.org/snapshots/</url>
+                    <releases>
+                        <enabled>false</enabled>
+                    </releases>
+                    <snapshots>
+                        <enabled>true</enabled>
+                    </snapshots>
+                </pluginRepository>
+            </pluginRepositories>
+        </profile>
+    </profiles>
+
+    <!-- Activate the apache-snapshots-enabled profile -->
+    <activeProfiles>
+        <activeProfile>apache-snapshots-enabled</activeProfile>
+    </activeProfiles>
+</settings>
\ No newline at end of file


[10/13] flex-typedefs git commit: - Prepared the SCM urls prior to releasing

Posted by ah...@apache.org.
- Prepared the SCM urls prior to releasing


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

Branch: refs/heads/master
Commit: 5d4f42047748836e778b66e8fe351eb0a746fcb1
Parents: 81a6e0d
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 11:06:33 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 11:06:33 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5d4f4204/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9b59041..9a167fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,9 +35,10 @@
   <name>Apache Flex - FlexJS: TypeDefs: Parent</name>
 
   <scm>
-    <connection>scm:git://git.apache.org/flex-typedefs.git</connection>
-    <developerConnection>scm:git://git.apache.org/flex-typedefs.git</developerConnection>
+    <connection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-typedefs.git</connection>
+    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-typedefs.git</developerConnection>
     <url>https://github.com/apache/flex-typedefs</url>
+    <tag>HEAD</tag>
   </scm>
 
   <properties>
@@ -45,8 +46,8 @@
     <project.reporting.outputencoding>UTF-8</project.reporting.outputencoding>
     <maven.version>3.3.1</maven.version>
 
-    <flexjs.compiler.version>0.7.0-SNAPSHOT</flexjs.compiler.version>
-    <flexjs.build-tools.version>0.7.0-SNAPSHOT</flexjs.build-tools.version>
+    <flexjs.compiler.version>0.7.0</flexjs.compiler.version>
+    <flexjs.build-tools.version>1.0.0</flexjs.build-tools.version>
 
     <git.executable>git</git.executable>
   </properties>


[11/13] flex-typedefs git commit: Added maven extension

Posted by ah...@apache.org.
Added maven extension


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

Branch: refs/heads/master
Commit: 91bc716e23efdb22cd2bb12e722d7adb5ca3c27b
Parents: 5d4f420
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 11:11:12 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 11:11:12 2016 +0200

----------------------------------------------------------------------
 .mvn/extensions.xml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/91bc716e/.mvn/extensions.xml
----------------------------------------------------------------------
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
new file mode 100644
index 0000000..d653334
--- /dev/null
+++ b/.mvn/extensions.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0"
+            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+            xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
+
+    <extension>
+        <groupId>org.apache.flex.flexjs.compiler</groupId>
+        <artifactId>flexjs-maven-extension</artifactId>
+        <version>0.7.0-SNAPSHOT</version>
+    </extension>
+
+</extensions>
\ No newline at end of file


[04/13] flex-typedefs git commit: - Activated the apache-rat-plugin in all modules to do automated checks if all sources have proper license headers - Fixed the license-header related issues in the build - Moved the README.txt files in some examples from

Posted by ah...@apache.org.
- Activated the apache-rat-plugin in all modules to do automated checks if all sources have proper license headers
- Fixed the license-header related issues in the build
- Moved the README.txt files in some examples from the src directory into the roots of the examples projects


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

Branch: refs/heads/master
Commit: 5888cfb15a243385b4b84ebbb81162c34ccac44d
Parents: 8ec3977
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Tue Jul 19 11:53:54 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Tue Jul 19 11:53:54 2016 +0200

----------------------------------------------------------------------
 GCL/pom.xml                                  |  2 +-
 cordova/pom.xml                              |  2 +-
 createjs/pom.xml                             |  2 +-
 createjs/src/main/patch/easeljs.patch        | 15 +++++++++++
 createjs/src/main/patch/tweenjs.patch        | 15 +++++++++++
 google_maps/pom.xml                          |  2 +-
 google_maps/src/main/patch/google_maps.patch | 15 +++++++++++
 jasmine/pom.xml                              |  2 +-
 jquery/pom.xml                               |  2 +-
 jquery/src/main/patch/jquery.patch           | 15 +++++++++++
 js/pom.xml                                   |  2 +-
 js/src/main/patch/js.patch                   | 15 +++++++++++
 node/pom.xml                                 |  2 +-
 pom.xml                                      | 31 ++++++++++++++++++++++-
 14 files changed, 113 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/GCL/pom.xml
----------------------------------------------------------------------
diff --git a/GCL/pom.xml b/GCL/pom.xml
index 380d664..b7b50f0 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/cordova/pom.xml
----------------------------------------------------------------------
diff --git a/cordova/pom.xml b/cordova/pom.xml
index 03a77cc..e6cd858 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/createjs/pom.xml
----------------------------------------------------------------------
diff --git a/createjs/pom.xml b/createjs/pom.xml
index c9dee31..3f32eaf 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/createjs/src/main/patch/easeljs.patch
----------------------------------------------------------------------
diff --git a/createjs/src/main/patch/easeljs.patch b/createjs/src/main/patch/easeljs.patch
index cc6822f..014fc87 100644
--- a/createjs/src/main/patch/easeljs.patch
+++ b/createjs/src/main/patch/easeljs.patch
@@ -1,4 +1,19 @@
 
+  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.
+
 Generated from Ant script
 diff --git a/createjs/target/downloads/EaselJS-0.8.0/src/createjs/events/Event.js b/createjs/target/downloads/EaselJS-0.8.0/src/createjs/events/Event.js
 index 3ce0025..e8a377d 100644

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/createjs/src/main/patch/tweenjs.patch
----------------------------------------------------------------------
diff --git a/createjs/src/main/patch/tweenjs.patch b/createjs/src/main/patch/tweenjs.patch
index 0b4ceab..9401dde 100644
--- a/createjs/src/main/patch/tweenjs.patch
+++ b/createjs/src/main/patch/tweenjs.patch
@@ -1,4 +1,19 @@
 
+  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.
+
 Generated from Ant script
 diff --git a/createjs/target/downloads/TweenJS-0.6.2/src/tweenjs/CSSPlugin.js b/createjs/target/downloads/TweenJS-0.6.2/src/tweenjs/CSSPlugin.js
 index 52e0206..0fe6341 100644

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/google_maps/pom.xml
----------------------------------------------------------------------
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 3866637..a9f41b9 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/google_maps/src/main/patch/google_maps.patch
----------------------------------------------------------------------
diff --git a/google_maps/src/main/patch/google_maps.patch b/google_maps/src/main/patch/google_maps.patch
index 8061e47..7738989 100644
--- a/google_maps/src/main/patch/google_maps.patch
+++ b/google_maps/src/main/patch/google_maps.patch
@@ -1,4 +1,19 @@
 
+  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.
+
 Generated from Ant script
 diff --git a/google_maps/target/downloads/google_maps_api_v3_11.js b/google_maps/target/downloads/google_maps_api_v3_11.js
 index ac91685..5dbb628 100644

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/jasmine/pom.xml
----------------------------------------------------------------------
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index 7ed7948..23f10d7 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/jquery/pom.xml
----------------------------------------------------------------------
diff --git a/jquery/pom.xml b/jquery/pom.xml
index eada4ce..663f55a 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/jquery/src/main/patch/jquery.patch
----------------------------------------------------------------------
diff --git a/jquery/src/main/patch/jquery.patch b/jquery/src/main/patch/jquery.patch
index 7ef865f..690dc91 100644
--- a/jquery/src/main/patch/jquery.patch
+++ b/jquery/src/main/patch/jquery.patch
@@ -1,4 +1,19 @@
 
+  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.
+
 Generated from Ant script
 diff --git a/jquery/target/downloads/jquery-1.9.js b/jquery/target/downloads/jquery-1.9.js
 index d00166a..1d85908 100644

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/js/pom.xml
----------------------------------------------------------------------
diff --git a/js/pom.xml b/js/pom.xml
index bf0fa99..c490783 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/js/src/main/patch/js.patch
----------------------------------------------------------------------
diff --git a/js/src/main/patch/js.patch b/js/src/main/patch/js.patch
index fb43f70..cae08d5 100644
--- a/js/src/main/patch/js.patch
+++ b/js/src/main/patch/js.patch
@@ -1,4 +1,19 @@
 
+  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.
+
 Generated from Ant script
 diff --git a/js/target/downloads/es3.js b/js/target/downloads/es3.js
 index fa5e5a6..6c5e3e7 100644

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/node/pom.xml
----------------------------------------------------------------------
diff --git a/node/pom.xml b/node/pom.xml
index c4f6672..3848019 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,7 +23,7 @@
 
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
-    <artifactId>flexjs-typedefs</artifactId>
+    <artifactId>flexjs-typedefs-parent</artifactId>
     <version>0.7.0-SNAPSHOT</version>
   </parent>
 

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/5888cfb1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bea2b65..9b59041 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
   </parent>
 
   <groupId>org.apache.flex.flexjs.typedefs</groupId>
-  <artifactId>flexjs-typedefs</artifactId>
+  <artifactId>flexjs-typedefs-parent</artifactId>
   <version>0.7.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
@@ -95,6 +95,35 @@
 
   <build>
     <plugins>
+      <!-- Check if all source files have the required apache license headers -->
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.12</version>
+        <executions>
+          <execution>
+            <id>license-check</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.doxia</groupId>
+            <artifactId>doxia-core</artifactId>
+            <version>1.6</version>
+            <exclusions>
+              <exclusion>
+                <groupId>xerces</groupId>
+                <artifactId>xercesImpl</artifactId>
+              </exclusion>
+            </exclusions>
+          </dependency>
+        </dependencies>
+      </plugin>
+
       <!-- Configure the Site generation -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>


[06/13] flex-typedefs git commit: try to fix build

Posted by ah...@apache.org.
try to fix build


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

Branch: refs/heads/master
Commit: 02e90721f81f9029c79aa646fc9e66f16f6f2862
Parents: a2b7167
Author: Alex Harui <ah...@apache.org>
Authored: Wed Jul 20 16:59:19 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Jul 20 16:59:29 2016 -0700

----------------------------------------------------------------------
 GCL/build.xml         | 4 ++--
 cordova/build.xml     | 4 ++--
 createjs/build.xml    | 4 ++--
 google_maps/build.xml | 4 ++--
 jasmine/build.xml     | 4 ++--
 jquery/build.xml      | 4 ++--
 js/build.xml          | 4 ++--
 node/build.xml        | 4 ++--
 8 files changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/GCL/build.xml
----------------------------------------------------------------------
diff --git a/GCL/build.xml b/GCL/build.xml
index 08c2271..9428351 100644
--- a/GCL/build.xml
+++ b/GCL/build.xml
@@ -32,7 +32,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -93,7 +93,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/cordova/build.xml
----------------------------------------------------------------------
diff --git a/cordova/build.xml b/cordova/build.xml
index b5289bf..43495f2 100644
--- a/cordova/build.xml
+++ b/cordova/build.xml
@@ -34,7 +34,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -101,7 +101,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/createjs/build.xml
----------------------------------------------------------------------
diff --git a/createjs/build.xml b/createjs/build.xml
index 50d7ad5..2317049 100644
--- a/createjs/build.xml
+++ b/createjs/build.xml
@@ -35,7 +35,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -554,7 +554,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/google_maps/build.xml
----------------------------------------------------------------------
diff --git a/google_maps/build.xml b/google_maps/build.xml
index 2eb3e2d..17d99b3 100644
--- a/google_maps/build.xml
+++ b/google_maps/build.xml
@@ -34,7 +34,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -157,7 +157,7 @@ google.maps = {};]]></replacevalue>
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/jasmine/build.xml
----------------------------------------------------------------------
diff --git a/jasmine/build.xml b/jasmine/build.xml
index 5ff9255..927b21d 100644
--- a/jasmine/build.xml
+++ b/jasmine/build.xml
@@ -32,7 +32,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -99,7 +99,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/jquery/build.xml
----------------------------------------------------------------------
diff --git a/jquery/build.xml b/jquery/build.xml
index a510ba9..9fa1040 100644
--- a/jquery/build.xml
+++ b/jquery/build.xml
@@ -32,7 +32,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -136,7 +136,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/js/build.xml
----------------------------------------------------------------------
diff --git a/js/build.xml b/js/build.xml
index a050b98..c73bc74 100644
--- a/js/build.xml
+++ b/js/build.xml
@@ -32,7 +32,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -156,7 +156,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
             todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/02e90721/node/build.xml
----------------------------------------------------------------------
diff --git a/node/build.xml b/node/build.xml
index 736c4ed..578047c 100644
--- a/node/build.xml
+++ b/node/build.xml
@@ -32,7 +32,7 @@
         </and>
     </condition>
     
-    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler">
         <and>
             <not>
                 <isset property="FALCON_HOME" />
@@ -126,7 +126,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/lib/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />


[03/13] flex-typedefs git commit: - Fixed a wrong parent-relationship in flex-falcon - Streamlined the project names

Posted by ah...@apache.org.
- Fixed a wrong parent-relationship in flex-falcon
- Streamlined the project names


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

Branch: refs/heads/master
Commit: 8ec39774c67a1fe1229d8e3d13cd06e7c39deecd
Parents: aca1ec4
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Tue Jul 19 09:17:02 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Tue Jul 19 09:17:02 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/8ec39774/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d501475..bea2b65 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,7 +32,7 @@
   <version>0.7.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
-  <name>Apache Flex - FlexJS: TypeDefs</name>
+  <name>Apache Flex - FlexJS: TypeDefs: Parent</name>
 
   <scm>
     <connection>scm:git://git.apache.org/flex-typedefs.git</connection>


[08/13] flex-typedefs git commit: update url for svg.js

Posted by ah...@apache.org.
update url for svg.js


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

Branch: refs/heads/master
Commit: f141b3bf54e1d589eefbe93604bf3f0bc0e86868
Parents: 0692651
Author: Alex Harui <ah...@apache.org>
Authored: Thu Aug 25 22:45:35 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Aug 25 22:45:35 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/f141b3bf/js/build.xml
----------------------------------------------------------------------
diff --git a/js/build.xml b/js/build.xml
index c73bc74..528b048 100644
--- a/js/build.xml
+++ b/js/build.xml
@@ -90,7 +90,7 @@
         </unjar>
         <mkdir dir="${basedir}/target/downloads" />
         <unzip src="${basedir}/target/temp/externs/externs.zip" dest="${basedir}/target/downloads" />
-        <get src="https://closureidl.googlecode.com/files/svg.js" dest="${basedir}/target/downloads/svg.js"/>
+        <get src="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/closureidl/svg.js" dest="${basedir}/target/downloads/svg.js"/>
     </target>
     
     <target name="make_patch" depends="download">


[05/13] flex-typedefs git commit: node: added some missing APIs

Posted by ah...@apache.org.
node: added some missing APIs


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

Branch: refs/heads/master
Commit: a2b7167a2b4b268633079cb6d9962d271fa07959
Parents: 5888cfb
Author: Josh Tynjala <jo...@apache.org>
Authored: Wed Jul 20 11:21:51 2016 -0700
Committer: Josh Tynjala <jo...@apache.org>
Committed: Wed Jul 20 11:21:51 2016 -0700

----------------------------------------------------------------------
 node/src/main/javascript/missing.js | 129 +++++++++++++++++++++++++++++++
 1 file changed, 129 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/a2b7167a/node/src/main/javascript/missing.js
----------------------------------------------------------------------
diff --git a/node/src/main/javascript/missing.js b/node/src/main/javascript/missing.js
index d6c73f3..d9df802 100644
--- a/node/src/main/javascript/missing.js
+++ b/node/src/main/javascript/missing.js
@@ -23,3 +23,132 @@
  * @externs
  */
 
+/**
+ * @param {string} command
+ * @param {child_process.Options} options
+ * @return {Buffer|string}
+ */
+child_process.execSync;
+
+/**
+ * @param {string} file
+ * @param {Array.<string>} args
+ * @param {child_process.Options} options
+ * @return {Buffer|string}
+ */
+child_process.execFileSync;
+
+/**
+ * @param {string} p
+ * @return {boolean}
+ * @nosideeffects
+ */
+path.isAbsolute;
+
+/**
+ * @type {string}
+ */
+path.delimiter;
+
+/**
+ * @return {void}
+ * @see http://nodejs.org/api/process.html#process_process_abort
+ */
+Process.prototype.abort = function () {};
+
+/**
+ * @type {string}
+ * @see http://nodejs.org/api/process.html#process_process_arch
+ */
+Process.prototype.arch;
+
+/**
+ * @type {Array<string>}
+ * @see http://nodejs.org/api/process.html#process_process_argv
+ */
+Process.prototype.argv;
+
+/**
+ * @param {string} directory
+ * @see http://nodejs.org/api/process.html#process_process_chdir_directory
+ */
+Process.prototype.chdir = function (directory) {};
+
+/**
+ * @type {*}
+ * @see http://nodejs.org/api/process.html#process_process_config
+ */
+Process.prototype.config;
+
+/**
+ * @type {boolean}
+ * @see http://nodejs.org/api/process.html#process_process_connected
+ */
+Process.prototype.connected;
+
+/**
+ * @return {string}
+ * @see http://nodejs.org/api/process.html#process_process_cwd
+ */
+Process.prototype.cwd = function () {};
+
+/**
+ * @return {void}
+ * @see http://nodejs.org/api/process.html#process_process_disconnect
+ */
+Process.prototype.disconnect = function () {};
+
+/**
+ * @type {*}
+ * @see http://nodejs.org/api/process.html#process_process_env
+ */
+Process.prototype.env;
+
+/**
+ * @param {number=} code
+ * @see http://nodejs.org/api/process.html#process_process_exit_code
+ */
+Process.prototype.exit = function (code) {};
+
+/**
+ * @param {number} pid
+ * @param {string|number} signal
+ * @see http://nodejs.org/api/process.html#process_process_kill_pid_signal
+ */
+Process.prototype.kill = function (pid, signal) {};
+
+/**
+ * @type {string}
+ * @see http://nodejs.org/api/process.html#process_process_pid
+ */
+Process.prototype.pid;
+
+/**
+ * @type {string}
+ * @see http://nodejs.org/api/process.html#process_process_platform
+ */
+Process.prototype.platform;
+
+/**
+ * @type {*}
+ * @see http://nodejs.org/api/process.html#process_process_release
+ */
+Process.prototype.release;
+
+/**
+ * @return {number}
+ * @see http://nodejs.org/api/process.html#process_process_uptime
+ */
+Process.prototype.uptime = function () {};
+
+/**
+ * @type {string}
+ * @see http://nodejs.org/api/process.html#process_process_version
+ */
+Process.prototype.version;
+
+/**
+ * @type {*}
+ * @see http://nodejs.org/api/process.html#process_process_versions
+ */
+Process.prototype.versions;
\ No newline at end of file


[02/13] flex-typedefs git commit: fix up ant scripts

Posted by ah...@apache.org.
fix up ant scripts


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

Branch: refs/heads/master
Commit: aca1ec4acf431e37957fe9229d9bfeffe4ce6a31
Parents: f160f7c
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jul 18 21:13:33 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jul 18 21:13:33 2016 -0700

----------------------------------------------------------------------
 GCL/build.xml                                | 58 ++++++++++++++++-
 cordova/build.xml                            | 60 ++++++++++++++++-
 createjs/build.xml                           | 70 ++++++++++++++++++--
 google_maps/build.xml                        | 75 ++++++++++++++++++++--
 google_maps/src/main/patch/google_maps.patch |  8 ++-
 jasmine/build.xml                            | 60 ++++++++++++++++-
 jquery/build.xml                             | 75 ++++++++++++++++++++--
 jquery/src/main/patch/jquery.patch           |  2 +
 js/build.xml                                 | 78 +++++++++++++++++++++--
 js/src/main/patch/js.patch                   |  2 +
 node/build.xml                               | 60 ++++++++++++++++-
 11 files changed, 512 insertions(+), 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/GCL/build.xml
----------------------------------------------------------------------
diff --git a/GCL/build.xml b/GCL/build.xml
index 3167b90..08c2271 100644
--- a/GCL/build.xml
+++ b/GCL/build.xml
@@ -21,6 +21,62 @@
 
 <project name="GCL" default="main" basedir=".">
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
     <target name="main" depends="preprocess, externc, postprocess, compc" />
 
     <!-- we need to insert a line near the beginning of the file to make the
@@ -37,7 +93,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/cordova/build.xml
----------------------------------------------------------------------
diff --git a/cordova/build.xml b/cordova/build.xml
index 6eddf99..b5289bf 100644
--- a/cordova/build.xml
+++ b/cordova/build.xml
@@ -23,6 +23,62 @@
     
     <property name="cordova.version" value="4.11" />
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
     <target name="main" depends="preprocess, externc, postprocess, compc" />
 
     <!-- we need to insert a line near the beginning of the file to make the
@@ -31,7 +87,7 @@
     </target>
         
     <target name="externc" >
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -45,7 +101,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/createjs/build.xml
----------------------------------------------------------------------
diff --git a/createjs/build.xml b/createjs/build.xml
index ee108a2..50d7ad5 100644
--- a/createjs/build.xml
+++ b/createjs/build.xml
@@ -24,6 +24,62 @@
     <property name="createjs.version" value="0.8.0" />
     <property name="tweenjs.version" value="0.6.2" />
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
     <target name="main" depends="download, download_tween, preprocess, externc, postprocess, compc" />
     
     <target name="download" >
@@ -260,9 +316,9 @@
             <arg value="${basedir}/target/downloads/TweenJS-${tweenjs.version}"/>
         </exec>
         <replace file="${basedir}/src/main/patch/easeljs.temp.patch" token="target/reference" value="target/downloads" />
-        <replace file="${basedir}/src/main/patch/easeljs.temp.patch" token="${basedir}/target/downloads" value="/externs/createjs/target/downloads" />
+        <replace file="${basedir}/src/main/patch/easeljs.temp.patch" token="${basedir}/target/downloads" value="/createjs/target/downloads" />
         <replace file="${basedir}/src/main/patch/tweenjs.temp.patch" token="target/reference" value="target/downloads" />
-        <replace file="${basedir}/src/main/patch/tweenjs.temp.patch" token="${basedir}/target/downloads" value="/externs/createjs/target/downloads" />
+        <replace file="${basedir}/src/main/patch/tweenjs.temp.patch" token="${basedir}/target/downloads" value="/createjs/target/downloads" />
         <concat destfile="${basedir}/src/main/patch/tweenjs.patch" >
             <header filtering="no" trimleading="yes">
                 Generated from Ant script
@@ -280,13 +336,13 @@
     </target>
     
     <target name="preprocess" depends="expandzip, expandzip_tween">
-        <exec executable="git" dir="${basedir}/../..">
+        <exec executable="git" dir="${basedir}/..">
             <arg value="apply"/>
             <arg value="--ignore-whitespace"/>
             <arg value="--whitespace=nowarn"/>
             <arg value="${basedir}/src/main/patch/easeljs.patch"/>
         </exec>
-        <exec executable="git" dir="${basedir}/../..">
+        <exec executable="git" dir="${basedir}/..">
             <arg value="apply"/>
             <arg value="--ignore-whitespace"/>
             <arg value="--whitespace=nowarn"/>
@@ -404,7 +460,7 @@
         <!-- this step removes function bodies and otherwise makes the files
              look like typical GCC externs files that GCC expects -->
         <delete dir="${basedir}/target/generated-sources/externs" />
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -484,7 +540,7 @@
     
     <target name="externc" >
         <delete dir="${basedir}/target/generated-sources/externs" />
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -498,7 +554,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/google_maps/build.xml
----------------------------------------------------------------------
diff --git a/google_maps/build.xml b/google_maps/build.xml
index a0c717f..2eb3e2d 100644
--- a/google_maps/build.xml
+++ b/google_maps/build.xml
@@ -23,10 +23,66 @@
     
     <property name="google_maps.version" value="3.11" />
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
     <target name="main" depends="preprocess, externc, postprocess, compc" />
     
     <target name="preprocess" depends="download">
-        <exec executable="git" dir="${basedir}/../..">
+        <exec executable="git" dir="${basedir}/..">
             <arg value="apply"/>
             <arg value="--ignore-whitespace"/>
             <arg value="--whitespace=nowarn"/>
@@ -68,19 +124,26 @@ google.maps = {};]]></replacevalue>
     <target name="diff" >
         <delete dir="${basedir}/src/main/patch" />
         <mkdir dir="${basedir}/src/main/patch" />
-        <exec executable="git" output="${basedir}/src/main/patch/google_maps.patch" >
+        <exec executable="git" output="${basedir}/src/main/patch/google_maps.temp.patch" >
             <arg value="diff"/>
             <arg value="--no-index"/>
             <arg value="--"/>
             <arg value="${basedir}/target/reference"/>
             <arg value="${basedir}/target/downloads"/>
         </exec>
-        <replace file="${basedir}/src/main/patch/google_maps.patch" token="target/reference" value="target/downloads" />
-        <replace file="${basedir}/src/main/patch/google_maps.patch" token="${basedir}/target/downloads" value="/externs/google_maps/target/downloads" />
+        <replace file="${basedir}/src/main/patch/google_maps.temp.patch" token="target/reference" value="target/downloads" />
+        <replace file="${basedir}/src/main/patch/google_maps.temp.patch" token="${basedir}/target/downloads" value="/google_maps/target/downloads" />
+        <concat destfile="${basedir}/src/main/patch/google_maps.patch" >
+            <header filtering="no" trimleading="yes">
+                Generated from Ant script
+            </header>
+            <filelist dir="${basedir}/src/main/patch" files="google_maps.temp.patch"/>
+        </concat>
+        <delete file="${basedir}/src/main/patch/google_maps.temp.patch" />
     </target>
 
     <target name="externc" >
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -94,7 +157,7 @@ google.maps = {};]]></replacevalue>
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/google_maps/src/main/patch/google_maps.patch
----------------------------------------------------------------------
diff --git a/google_maps/src/main/patch/google_maps.patch b/google_maps/src/main/patch/google_maps.patch
index 05064ab..8061e47 100644
--- a/google_maps/src/main/patch/google_maps.patch
+++ b/google_maps/src/main/patch/google_maps.patch
@@ -1,7 +1,9 @@
-diff --git a/google_Maps/target/downloads/google_maps_api_v3_11.js b/google_Maps/target/downloads/google_maps_api_v3_11.js
+
+Generated from Ant script
+diff --git a/google_maps/target/downloads/google_maps_api_v3_11.js b/google_maps/target/downloads/google_maps_api_v3_11.js
 index ac91685..5dbb628 100644
---- a/google_Maps/target/downloads/google_maps_api_v3_11.js
-+++ b/google_Maps/target/downloads/google_maps_api_v3_11.js
+--- a/google_maps/target/downloads/google_maps_api_v3_11.js
++++ b/google_maps/target/downloads/google_maps_api_v3_11.js
 @@ -20,6 +20,11 @@
   * @externs
   */

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/jasmine/build.xml
----------------------------------------------------------------------
diff --git a/jasmine/build.xml b/jasmine/build.xml
index 4ebe95e..5ff9255 100644
--- a/jasmine/build.xml
+++ b/jasmine/build.xml
@@ -21,6 +21,62 @@
 
 <project name="jasmine" default="main" basedir=".">
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+        
     <target name="main" depends="preprocess, externc, postprocess, compc" />
 
     <target name="preprocess">
@@ -29,7 +85,7 @@
     </target>
     
     <target name="externc" >
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -43,7 +99,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/jquery/build.xml
----------------------------------------------------------------------
diff --git a/jquery/build.xml b/jquery/build.xml
index 5093931..a510ba9 100644
--- a/jquery/build.xml
+++ b/jquery/build.xml
@@ -21,10 +21,66 @@
 
 <project name="jquery" default="main" basedir=".">
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
     <target name="main" depends="preprocess, externc, postprocess, compc" />
 
     <target name="preprocess" depends="download">
-        <exec executable="git" dir="${basedir}/../..">
+        <exec executable="git" dir="${basedir}/..">
             <arg value="apply"/>
             <arg value="--ignore-whitespace"/>
             <arg value="--whitespace=nowarn"/>
@@ -42,15 +98,22 @@
     <target name="diff" >
         <delete dir="${basedir}/src/main/patch" />
         <mkdir dir="${basedir}/src/main/patch" />
-        <exec executable="git" output="${basedir}/src/main/patch/jquery.patch" >
+        <exec executable="git" output="${basedir}/src/main/patch/jquery.temp.patch" >
             <arg value="diff"/>
             <arg value="--no-index"/>
             <arg value="--"/>
             <arg value="${basedir}/target/reference"/>
             <arg value="${basedir}/target/downloads"/>
         </exec>
-        <replace file="${basedir}/src/main/patch/jquery.patch" token="target/reference" value="target/downloads" />
-        <replace file="${basedir}/src/main/patch/jquery.patch" token="${basedir}/target/downloads" value="/externs/jquery/target/downloads" />
+        <replace file="${basedir}/src/main/patch/jquery.temp.patch" token="target/reference" value="target/downloads" />
+        <replace file="${basedir}/src/main/patch/jquery.temp.patch" token="${basedir}/target/downloads" value="/jquery/target/downloads" />
+        <concat destfile="${basedir}/src/main/patch/jquery.patch" >
+            <header filtering="no" trimleading="yes">
+                Generated from Ant script
+            </header>
+            <filelist dir="${basedir}/src/main/patch" files="jquery.temp.patch"/>
+        </concat>
+        <delete file="${basedir}/src/main/patch/jquery.temp.patch" />
     </target>
 
     <target name="download" >
@@ -59,7 +122,7 @@
     </target>
     
     <target name="externc" >
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -73,7 +136,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/jquery/src/main/patch/jquery.patch
----------------------------------------------------------------------
diff --git a/jquery/src/main/patch/jquery.patch b/jquery/src/main/patch/jquery.patch
index fc32904..7ef865f 100644
--- a/jquery/src/main/patch/jquery.patch
+++ b/jquery/src/main/patch/jquery.patch
@@ -1,3 +1,5 @@
+
+Generated from Ant script
 diff --git a/jquery/target/downloads/jquery-1.9.js b/jquery/target/downloads/jquery-1.9.js
 index d00166a..1d85908 100644
 --- a/jquery/target/downloads/jquery-1.9.js

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/js/build.xml
----------------------------------------------------------------------
diff --git a/js/build.xml b/js/build.xml
index b2fdb56..a050b98 100644
--- a/js/build.xml
+++ b/js/build.xml
@@ -21,11 +21,68 @@
 
 <project name="js" default="main" basedir=".">
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
     <target name="main" depends="preprocess, externc, postprocess, compc" />
 
     <target name="download" >
+        <echo>${FLEXJS_HOME}</echo>
         <mkdir dir="${basedir}/target/temp/externs" />
-        <unjar src="${basedir}/../../compiler-jx/lib/google/closure-compiler/compiler.jar"
+        <unjar src="${FALCONJX_HOME}/lib/google/closure-compiler/compiler.jar"
             dest="${basedir}/target/temp/externs">
             <patternset>
                 <include name="externs.zip"/>
@@ -54,19 +111,26 @@
     <target name="diff" >
         <delete dir="${basedir}/src/main/patch" />
         <mkdir dir="${basedir}/src/main/patch" />
-        <exec executable="git" output="${basedir}/src/main/patch/js.patch" >
+        <exec executable="git" output="${basedir}/src/main/patch/js.temp.patch" >
             <arg value="diff"/>
             <arg value="--no-index"/>
             <arg value="--"/>
             <arg value="${basedir}/target/reference"/>
             <arg value="${basedir}/target/downloads"/>
         </exec>
-        <replace file="${basedir}/src/main/patch/js.patch" token="target/reference" value="target/downloads" />
-        <replace file="${basedir}/src/main/patch/js.patch" token="${basedir}/target/downloads" value="/externs/js/target/downloads" />
+        <replace file="${basedir}/src/main/patch/js.temp.patch" token="target/reference" value="target/downloads" />
+        <replace file="${basedir}/src/main/patch/js.temp.patch" token="${basedir}/target/downloads" value="/js/target/downloads" />
+        <concat destfile="${basedir}/src/main/patch/js.patch" >
+            <header filtering="no" trimleading="yes">
+                Generated from Ant script
+            </header>
+            <filelist dir="${basedir}/src/main/patch" files="js.temp.patch"/>
+        </concat>
+        <delete file="${basedir}/src/main/patch/js.temp.patch" />
     </target>
 
     <target name="preprocess" depends="download">
-        <exec executable="git" dir="${basedir}/../..">
+        <exec executable="git" dir="${basedir}/..">
             <arg value="apply"/>
             <arg value="--ignore-whitespace"/>
             <arg value="--whitespace=nowarn"/>
@@ -75,7 +139,7 @@
     </target>
 
     <target name="externc" >
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -92,7 +156,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
             todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/js/src/main/patch/js.patch
----------------------------------------------------------------------
diff --git a/js/src/main/patch/js.patch b/js/src/main/patch/js.patch
index a9b25b4..fb43f70 100644
--- a/js/src/main/patch/js.patch
+++ b/js/src/main/patch/js.patch
@@ -1,3 +1,5 @@
+
+Generated from Ant script
 diff --git a/js/target/downloads/es3.js b/js/target/downloads/es3.js
 index fa5e5a6..6c5e3e7 100644
 --- a/js/target/downloads/es3.js

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/aca1ec4a/node/build.xml
----------------------------------------------------------------------
diff --git a/node/build.xml b/node/build.xml
index 2731afc..736c4ed 100644
--- a/node/build.xml
+++ b/node/build.xml
@@ -21,6 +21,62 @@
 
 <project name="node" default="main" basedir=".">
     
+    <property name="FLEXJS_HOME" value="${basedir}/.." />
+    
+    <condition property="FALCON_HOME" value="${env.FALCON_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${env.FALCON_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler/lib">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCON_HOME" value="${FLEXJS_HOME}">
+        <and>
+            <not>
+                <isset property="FALCON_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/lib/falcon-mxmlc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${env.FALCONJX_HOME}">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${env.FALCONJX_HOME}/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/js">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/js/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+    
+    <condition property="FALCONJX_HOME" value="${FLEXJS_HOME}/../flex-falcon/compiler-jx">
+        <and>
+            <not>
+                <isset property="FALCONJX_HOME" />
+            </not>
+            <available file="${FLEXJS_HOME}/../flex-falcon/compiler-jx/lib/jsc.jar" type="file" />
+        </and>
+    </condition>
+        
     <target name="main" depends="preprocess, externc, postprocess, compc" />
 
     <target name="preprocess">
@@ -56,7 +112,7 @@
     </target>
     
     <target name="externc" >
-        <java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
+        <java jar="${FALCONJX_HOME}/lib/externc.jar" fork="true"
             failonerror="false">
             <arg value="+flexlib=externs" />
             <arg value="-debug" />
@@ -70,7 +126,7 @@
     <target name="compc" >
         <copy file="${basedir}/src/main/config/compile-as-config.xml"
         todir="${basedir}/target" />
-        <java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
+        <java jar="${FALCON_HOME}/falcon-compc.jar" fork="true"
             failonerror="true">
             <arg value="+flexlib=externs/frameworks" />
             <arg value="-debug" />


[12/13] flex-typedefs git commit: [maven-release-plugin] prepare release flexjs-typedefs-parent-0.7.0

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


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

Branch: refs/heads/master
Commit: d1d3f54afac4de05090ddc3cfefb127bd84b462d
Parents: 91bc716
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 11:12:21 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 11:12:21 2016 +0200

----------------------------------------------------------------------
 GCL/pom.xml         | 9 ++++-----
 cordova/pom.xml     | 9 ++++-----
 createjs/pom.xml    | 9 ++++-----
 google_maps/pom.xml | 9 ++++-----
 jasmine/pom.xml     | 9 ++++-----
 jquery/pom.xml      | 9 ++++-----
 js/pom.xml          | 7 +++----
 node/pom.xml        | 9 ++++-----
 pom.xml             | 9 ++++-----
 9 files changed, 35 insertions(+), 44 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/GCL/pom.xml
----------------------------------------------------------------------
diff --git a/GCL/pom.xml b/GCL/pom.xml
index b7b50f0..5742fb1 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-gcl</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: GCL</name>
@@ -60,7 +59,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/cordova/pom.xml
----------------------------------------------------------------------
diff --git a/cordova/pom.xml b/cordova/pom.xml
index e6cd858..5da77a1 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-cordova</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Cordova</name>
@@ -77,7 +76,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/createjs/pom.xml
----------------------------------------------------------------------
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 3f32eaf..363a1f0 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-createjs</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: CreateJS</name>
@@ -329,7 +328,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/google_maps/pom.xml
----------------------------------------------------------------------
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index a9f41b9..4e0b2c0 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-goolemaps</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: GoogleMaps</name>
@@ -127,7 +126,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/jasmine/pom.xml
----------------------------------------------------------------------
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index 23f10d7..4596068 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-jasmine</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Jasmine</name>
@@ -111,7 +110,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/jquery/pom.xml
----------------------------------------------------------------------
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 663f55a..13654ef 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-jquery</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: JQuery</name>
@@ -190,7 +189,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/js/pom.xml
----------------------------------------------------------------------
diff --git a/js/pom.xml b/js/pom.xml
index 72b76cf..df76e3a 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-js</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: JS</name>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/node/pom.xml
----------------------------------------------------------------------
diff --git a/node/pom.xml b/node/pom.xml
index 3848019..1726c38 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -17,18 +17,17 @@
   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.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
+    <version>0.7.0</version>
   </parent>
 
   <artifactId>flexjs-typedefs-node</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Node</name>
@@ -225,7 +224,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0-SNAPSHOT</version>
+      <version>0.7.0</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/d1d3f54a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9a167fc..b0a5b91 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,8 +17,7 @@
   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>
@@ -29,7 +28,7 @@
 
   <groupId>org.apache.flex.flexjs.typedefs</groupId>
   <artifactId>flexjs-typedefs-parent</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
+  <version>0.7.0</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Parent</name>
@@ -38,7 +37,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-typedefs.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-typedefs.git</developerConnection>
     <url>https://github.com/apache/flex-typedefs</url>
-    <tag>HEAD</tag>
+    <tag>flexjs-typedefs-parent-0.7.0</tag>
   </scm>
 
   <properties>
@@ -186,7 +185,7 @@
                         <toc>left</toc>
                         <icons>font</icons>
                         <sectanchors>true</sectanchors>
-                        <idprefix/>
+                        <idprefix />
                         <idseparator>-</idseparator>
                     </attributes>
                 </configuration>


[09/13] flex-typedefs git commit: - Updated url for svg.js

Posted by ah...@apache.org.
- Updated url for svg.js


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

Branch: refs/heads/master
Commit: 81a6e0ddeb3f07cddcc2caf63c87e363143ddd75
Parents: f141b3b
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Aug 29 22:46:00 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Aug 29 22:46:00 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/81a6e0dd/js/pom.xml
----------------------------------------------------------------------
diff --git a/js/pom.xml b/js/pom.xml
index c490783..72b76cf 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -49,7 +49,7 @@
               <goal>wget</goal>
             </goals>
             <configuration>
-              <url>https://closureidl.googlecode.com/files/svg.js</url>
+              <url>https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/closureidl/svg.js</url>
               <outputFileName>svg.js</outputFileName>
               <outputDirectory>${project.build.directory}/downloads</outputDirectory>
             </configuration>


[13/13] flex-typedefs git commit: [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-typedefs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-typedefs/commit/6ce61014
Tree: http://git-wip-us.apache.org/repos/asf/flex-typedefs/tree/6ce61014
Diff: http://git-wip-us.apache.org/repos/asf/flex-typedefs/diff/6ce61014

Branch: refs/heads/master
Commit: 6ce6101421d11e7cb6fd0e3b3f864a629c47205d
Parents: d1d3f54
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Sep 5 11:12:41 2016 +0200
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Sep 5 11:12:41 2016 +0200

----------------------------------------------------------------------
 GCL/pom.xml         | 6 +++---
 cordova/pom.xml     | 6 +++---
 createjs/pom.xml    | 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml     | 6 +++---
 jquery/pom.xml      | 6 +++---
 js/pom.xml          | 4 ++--
 node/pom.xml        | 6 +++---
 pom.xml             | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/GCL/pom.xml
----------------------------------------------------------------------
diff --git a/GCL/pom.xml b/GCL/pom.xml
index 5742fb1..8bb0d24 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-gcl</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: GCL</name>
@@ -59,7 +59,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/cordova/pom.xml
----------------------------------------------------------------------
diff --git a/cordova/pom.xml b/cordova/pom.xml
index 5da77a1..604c8a3 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-cordova</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Cordova</name>
@@ -76,7 +76,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/createjs/pom.xml
----------------------------------------------------------------------
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 363a1f0..e05393f 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-createjs</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: CreateJS</name>
@@ -328,7 +328,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/google_maps/pom.xml
----------------------------------------------------------------------
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 4e0b2c0..e1afa27 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-goolemaps</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: GoogleMaps</name>
@@ -126,7 +126,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/jasmine/pom.xml
----------------------------------------------------------------------
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index 4596068..8fd82fc 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-jasmine</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Jasmine</name>
@@ -110,7 +110,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/jquery/pom.xml
----------------------------------------------------------------------
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 13654ef..0eeff34 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-jquery</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: JQuery</name>
@@ -189,7 +189,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/js/pom.xml
----------------------------------------------------------------------
diff --git a/js/pom.xml b/js/pom.xml
index df76e3a..af0cb82 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-js</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: JS</name>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/node/pom.xml
----------------------------------------------------------------------
diff --git a/node/pom.xml b/node/pom.xml
index 1726c38..b9dc666 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   <parent>
     <groupId>org.apache.flex.flexjs.typedefs</groupId>
     <artifactId>flexjs-typedefs-parent</artifactId>
-    <version>0.7.0</version>
+    <version>0.8.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>flexjs-typedefs-node</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>swc</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Node</name>
@@ -224,7 +224,7 @@
     <dependency>
       <groupId>org.apache.flex.flexjs.typedefs</groupId>
       <artifactId>flexjs-typedefs-js</artifactId>
-      <version>0.7.0</version>
+      <version>0.8.0-SNAPSHOT</version>
       <type>swc</type>
       <classifier>typedefs</classifier>
       <scope>runtime</scope>

http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/6ce61014/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b0a5b91..8a5800a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   <groupId>org.apache.flex.flexjs.typedefs</groupId>
   <artifactId>flexjs-typedefs-parent</artifactId>
-  <version>0.7.0</version>
+  <version>0.8.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache Flex - FlexJS: TypeDefs: Parent</name>
@@ -37,7 +37,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-typedefs.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flex-typedefs.git</developerConnection>
     <url>https://github.com/apache/flex-typedefs</url>
-    <tag>flexjs-typedefs-parent-0.7.0</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <properties>