This is an automated email from the ASF dual-hosted git repository.
harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git
The following commit(s) were added to refs/heads/develop by this push:
new 1b53df8 Need these typedefs from royale-extras
1b53df8 is described below
commit 1b53df8a7c49cad79ba23a2c84ae211391d32062
Author: Harbs <[email protected]>
AuthorDate: Thu Jan 24 22:24:22 2019 +0200
Need these typedefs from royale-extras
---
js/build.xml | 7 +++++++
js/pom.xml | 14 ++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/js/build.xml b/js/build.xml
index 79179fc..ea32d5e 100644
--- a/js/build.xml
+++ b/js/build.xml
@@ -97,6 +97,7 @@
<exclude name="**/w3c_css.js"/>
<exclude name="**/gecko_dom.js"/>
<exclude name="**/w3c_dom2.js"/>
+ <exclude name="**/html5.js"/>
</patternset>
</unzip>
<get
src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/contrib/externs/svg.js"
dest="${basedir}/target/downloads/svg.js" ignoreerrors="true"
skipexisting="false"/>
@@ -106,6 +107,7 @@
<get
src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/w3c_css.js"
dest="${basedir}/target/downloads/browser/w3c_css.js" ignoreerrors="true"
skipexisting="false"/>
<get
src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/gecko_dom.js"
dest="${basedir}/target/downloads/browser/gecko_dom.js" ignoreerrors="true"
skipexisting="false"/>
<get
src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/w3c_dom2.js"
dest="${basedir}/target/downloads/browser/w3c_dom2.js" ignoreerrors="true"
skipexisting="false"/>
+ <get
src="https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/html5.js"
dest="${basedir}/target/downloads/browser/html5.js" ignoreerrors="true"
skipexisting="false"/>
<antcall target="get-from-cache-if-needed" >
<param name="srcFile" value="svg.js" />
<param name="destFile" value="svg.js" />
@@ -141,6 +143,11 @@
<param name="destFile" value="w3c_dom2.js" />
<param name="destDir" value="${basedir}/target/downloads/browser"
/>
</antcall>
+ <antcall target="get-from-cache-if-needed" >
+ <param name="srcFile" value="html5.js" />
+ <param name="destFile" value="html5.js" />
+ <param name="destDir" value="${basedir}/target/downloads/browser"
/>
+ </antcall>
<antcall target="fail-if-not-found" >
<param name="destFile" value="svg.js" />
<param name="destDir" value="${basedir}/target/downloads" />
diff --git a/js/pom.xml b/js/pom.xml
index 1572249..442ca19 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -166,6 +166,20 @@
<overwrite>true</overwrite>
</configuration>
</execution>
+ <execution>
+ <id>get-html5</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+
<url>https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/externs/browser/html5.js</url>
+ <outputFileName>html5.js</outputFileName>
+
<outputDirectory>${project.build.directory}/downloads/browser</outputDirectory>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
+ </configuration>
+ </execution>
</executions>
</plugin>