Merge branch 'master' of https://gitbox.apache.org/repos/asf/ant-antlibs-props
diff --git a/NOTICE b/NOTICE
index 960b0aa..744b1a6 100644
--- a/NOTICE
+++ b/NOTICE
@@ -2,5 +2,5 @@
 Copyright 2007-2013 The Apache Software Foundation
 
 This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
+The Apache Software Foundation (https://www.apache.org/).
 
diff --git a/common b/common
index 0a4d365..a715465 160000
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 0a4d3650f72e8ec0a27f2f9e41287d96c23136b2
+Subproject commit a715465514e3aaa5e6e06a91345c0292c3642539
diff --git a/docs/index.html b/docs/index.html
index fc24814..412aa81 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -32,8 +32,8 @@
 
     <h2>Where is it?</h2>
 
-    <p>The source code for the library lives in the antlibs subspace of Ant's SVN -
-    <a href="http://svn.apache.org/viewvc/ant/antlibs/props/trunk/">http://svn.apache.org/viewvc/ant/antlibs/props/trunk/</a>.</p>
+    <p>The source code for the library lives in the antlibs subspace of Ant's git -
+    <a href="https://gitbox.apache.org/repos/asf?p=ant-antlibs-props.git">https://gitbox.apache.org/repos/asf?p=ant-antlibs-props.git</a>.</p>
 
     <h2>Installation</h2>
 
@@ -91,7 +91,7 @@
 
     <p>The types provided are instances of
        <code>org.apache.tools.ant.PropertyHelper.Delegate</code> and can be invoked using the
-       <code>&lt;<a href="http://ant.apache.org/manual/CoreTasks/propertyhelper.html">propertyhelper</a>&gt;</code>
+       <code>&lt;<a href="https://ant.apache.org/manual/CoreTasks/propertyhelper.html">propertyhelper</a>&gt;</code>
        task provided by Ant:</p>
 
     <table border="1" cellspacing="0" cellpadding="2" width="100%">
diff --git a/prepare.xml b/prepare.xml
index 0995174..cd9385e 100644
--- a/prepare.xml
+++ b/prepare.xml
@@ -27,7 +27,7 @@
 
   <!-- Which released version of AntUnit to use, where to download, where to store. -->
   <property name="antunit.version" value="1.3"/>
-  <property name="antunit.url" value="http://repo1.maven.org/maven2/org/apache/ant/ant-antunit/${antunit.version}/ant-antunit-${antunit.version}.jar"/>
+  <property name="antunit.url" value="https://repo1.maven.org/maven2/org/apache/ant/ant-antunit/${antunit.version}/ant-antunit-${antunit.version}.jar"/>
   <property name="antunit.file" value="ant-antunit.jar"/>
 
   <!-- Skip unnecessary tasks. -->
diff --git a/src/tests/antunit/encodeURL-test.xml b/src/tests/antunit/encodeURL-test.xml
index e312937..218c3fa 100644
--- a/src/tests/antunit/encodeURL-test.xml
+++ b/src/tests/antunit/encodeURL-test.xml
@@ -28,18 +28,18 @@
 
   <target name="testBasic" depends="setUp">
     <au:assertTrue>
-      <equals arg1="${encodeURL:http://ant.apache.org}" arg2="http://ant.apache.org" />
+      <equals arg1="${encodeURL:https://ant.apache.org}" arg2="https://ant.apache.org" />
     </au:assertTrue>
     <au:assertTrue>
-      <equals arg1="${encodeURL:http://ant.apache.org/foo bar}"
-              arg2="http://ant.apache.org/foo%20bar" />
+      <equals arg1="${encodeURL:https://ant.apache.org/foo bar}"
+              arg2="https://ant.apache.org/foo%20bar" />
     </au:assertTrue>
   </target>
 
   <target name="testDelimiter" depends="setUp">
     <au:assertTrue>
-      <equals arg1="${encodeURL,http://ant.apache.org/foo bar?baz}"
-              arg2="http://ant.apache.org/foo%20bar?baz" />
+      <equals arg1="${encodeURL,https://ant.apache.org/foo bar?baz}"
+              arg2="https://ant.apache.org/foo%20bar?baz" />
     </au:assertTrue>
   </target>