Skip to content

Commit 1d79b12

Browse files
authored
Merge pull request #933 from Stefterv/dependency-urls
Updated dependency locations to somewhere more stable 🤞
2 parents 2f3ef53 + c6a10fc commit 1d79b12

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<!-- Current version of Ant that works with Processing -->
55
<!-- (Cannot use ant.version as the name of the property
66
because that conflicts with the built-in variable) -->
7-
<property name="ant.version.num" value="1.10.12" />
7+
<property name="ant.version.num" value="1.10.15" />
88
<!-- the .zip file to be downloaded -->
99
<property name="ant.zip" value="apache-ant-${ant.version.num}-bin.zip" />
1010

1111
<!-- TODO implement a fallback URL that points to a location
1212
on download.processing.org so it's available forever. -->
1313
<property name="ant.url"
14-
value="https://archive.apache.org/dist/ant/binaries/${ant.zip}" />
14+
value="https://dlcdn.apache.org//ant/binaries/${ant.zip}" />
1515

1616
<fileset id="ant.files" dir="lib">
1717
<include name="ant.jar" />

java/libraries/svg/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<property name="core.library.jar" location="../../../core/library/core.jar" />
55

6-
<property name="batik.version" value="1.14" />
6+
<property name="batik.version" value="1.18" />
77
<!-- the .zip file to be downloaded -->
88
<property name="batik.zip" value="batik-bin-${batik.version}.zip" />
99
<!-- the .jar file that we need from the download -->
@@ -13,7 +13,7 @@
1313

1414
<!-- URL for the version of Batik currently supported by this library. -->
1515
<property name="batik.url"
16-
value="https://archive.apache.org/dist/xmlgraphics/batik/binaries/${batik.zip}" />
16+
value="https://dlcdn.apache.org//xmlgraphics/batik/binaries/${batik.zip}" />
1717

1818
<!-- Storing a "local" copy in case the original link goes dead. When updating
1919
releases, please upload the new version to download.processing.org. -->

0 commit comments

Comments
 (0)