This is an automated email from the ASF dual-hosted git repository.
joshtynjala 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 5e60084 skip cache consistently for all typedefs
5e60084 is described below
commit 5e6008483702fb49c2445969b8b56f433a48b6da
Author: Josh Tynjala <[email protected]>
AuthorDate: Tue Apr 25 11:02:14 2023 -0700
skip cache consistently for all typedefs
This was causing release builds to fail reproducibility when one machine
had cached an older version of a .js file
---
ace/pom.xml | 5 +++--
google_maps/pom.xml | 5 +++--
jasmine/pom.xml | 4 +++-
jquery/pom.xml | 4 +++-
js/pom.xml | 1 +
node/pom.xml | 2 ++
6 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/ace/pom.xml b/ace/pom.xml
index 126d2b2..77b5da9 100644
--- a/ace/pom.xml
+++ b/ace/pom.xml
@@ -43,16 +43,17 @@
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
- <id>get-createjs</id>
+ <id>get-ace</id>
<phase>validate</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
- <skipCache>true</skipCache>
<url>https://raw.githubusercontent.com/google/closure-compiler/master/contrib/externs/ace-${ace.version}.js</url>
<outputFileName>ace-${ace.version}.js</outputFileName>
<outputDirectory>${project.build.directory}/downloads</outputDirectory>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
</configuration>
</execution>
</executions>
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index b3a2db2..8058d87 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -43,16 +43,17 @@
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
- <id>get-createjs</id>
+ <id>get-google-maps</id>
<phase>validate</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
- <skipCache>true</skipCache>
<url>https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/contrib/externs/maps/google_maps_api_${googlemaps.version}.js</url>
<outputFileName>google_maps_api_${googlemaps.version}.js</outputFileName>
<outputDirectory>${project.build.directory}/downloads</outputDirectory>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
</configuration>
</execution>
</executions>
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index e81d971..9de13a4 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -43,7 +43,7 @@
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
- <id>get-createjs</id>
+ <id>get-jasmine</id>
<phase>validate</phase>
<goals>
<goal>wget</goal>
@@ -52,6 +52,8 @@
<url>https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/contrib/externs/jasmine-${jasmine.version}.js</url>
<outputFileName>jasmine-${jasmine.version}.js</outputFileName>
<outputDirectory>${project.build.directory}/downloads</outputDirectory>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
</configuration>
</execution>
</executions>
diff --git a/jquery/pom.xml b/jquery/pom.xml
index ae33363..772a8b1 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -43,7 +43,7 @@
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
- <id>get-createjs</id>
+ <id>get-jquery</id>
<phase>validate</phase>
<goals>
<goal>wget</goal>
@@ -52,6 +52,8 @@
<url>https://raw.githubusercontent.com/royale-extras/closure-compiler/royale/contrib/externs/jquery-${jquery.version}.js</url>
<outputFileName>jquery-${jquery.version}.js</outputFileName>
<outputDirectory>${project.build.directory}/downloads</outputDirectory>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
</configuration>
</execution>
</executions>
diff --git a/js/pom.xml b/js/pom.xml
index 9b415e4..33f2113 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -77,6 +77,7 @@
<outputFileName>svg.js</outputFileName>
<outputDirectory>${project.build.directory}/downloads</outputDirectory>
<skipCache>true</skipCache>
+ <overwrite>true</overwrite>
</configuration>
</execution>
<execution>
diff --git a/node/pom.xml b/node/pom.xml
index 9f90f42..bb301f2 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -57,6 +57,8 @@
<outputFileName>node-externs.zip</outputFileName>
<outputDirectory>${project.build.directory}/downloads</outputDirectory>
<unpack>true</unpack>
+ <skipCache>true</skipCache>
+ <overwrite>true</overwrite>
</configuration>
</execution>
</executions>