This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/master by this push:
     new 1475f3c3 Update Apache License URL to HTTPS
1475f3c3 is described below

commit 1475f3c3ec86fb1140687e387e34ebde3e7d734a
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Wed May 21 07:20:56 2025 -0400

    Update Apache License URL to HTTPS
    
    See https://www.apache.org/legal/src-headers.html
---
 .asf.yaml                                                               | 2 +-
 .github/GH-ROBOTS.txt                                                   | 2 +-
 .github/dependabot.yml                                                  | 2 +-
 .github/pull_request_template.md                                        | 2 +-
 .github/workflows/codeql-analysis.yml                                   | 2 +-
 .github/workflows/dependency-review.yml                                 | 2 +-
 .github/workflows/maven.yml                                             | 2 +-
 .github/workflows/scorecards-analysis.yml                               | 2 +-
 CODE_OF_CONDUCT.md                                                      | 2 +-
 CONTRIBUTING.md                                                         | 2 +-
 LICENSE.txt                                                             | 2 +-
 README.md                                                               | 2 +-
 SECURITY.md                                                             | 2 +-
 doc/ReaderUtil.java                                                     | 2 +-
 doc/ReaderUtilClient.java                                               | 2 +-
 doc/StringBufferFactory.java                                            | 2 +-
 pom.xml                                                                 | 2 +-
 pool-RC.sh                                                              | 2 +-
 pool-pre-RC.sh                                                          | 2 +-
 pool-release.sh                                                         | 2 +-
 src/assembly/bin.xml                                                    | 2 +-
 src/assembly/src.xml                                                    | 2 +-
 src/changes/changes.xml                                                 | 2 +-
 src/changes/release-notes.vm                                            | 2 +-
 src/conf/checkstyle.xml                                                 | 2 +-
 src/conf/findbugs-exclude-filter.xml                                    | 2 +-
 src/conf/pmd-ruleset.xml                                                | 2 +-
 .../java/org/apache/commons/pool3/BaseKeyedPooledObjectFactory.java     | 2 +-
 src/main/java/org/apache/commons/pool3/BaseObject.java                  | 2 +-
 src/main/java/org/apache/commons/pool3/BaseObjectPool.java              | 2 +-
 src/main/java/org/apache/commons/pool3/BasePooledObjectFactory.java     | 2 +-
 src/main/java/org/apache/commons/pool3/DestroyMode.java                 | 2 +-
 src/main/java/org/apache/commons/pool3/KeyedObjectPool.java             | 2 +-
 src/main/java/org/apache/commons/pool3/KeyedPooledObjectFactory.java    | 2 +-
 src/main/java/org/apache/commons/pool3/ObjectPool.java                  | 2 +-
 src/main/java/org/apache/commons/pool3/PoolUtils.java                   | 2 +-
 src/main/java/org/apache/commons/pool3/PooledObject.java                | 2 +-
 src/main/java/org/apache/commons/pool3/PooledObjectFactory.java         | 2 +-
 src/main/java/org/apache/commons/pool3/PooledObjectState.java           | 2 +-
 src/main/java/org/apache/commons/pool3/SwallowedExceptionListener.java  | 2 +-
 src/main/java/org/apache/commons/pool3/TrackedUse.java                  | 2 +-
 src/main/java/org/apache/commons/pool3/UsageTracking.java               | 2 +-
 src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java        | 2 +-
 src/main/java/org/apache/commons/pool3/impl/BaseGenericObjectPool.java  | 2 +-
 src/main/java/org/apache/commons/pool3/impl/BaseObjectPoolConfig.java   | 2 +-
 src/main/java/org/apache/commons/pool3/impl/CallStack.java              | 2 +-
 src/main/java/org/apache/commons/pool3/impl/CallStackUtils.java         | 2 +-
 src/main/java/org/apache/commons/pool3/impl/DefaultEvictionPolicy.java  | 2 +-
 src/main/java/org/apache/commons/pool3/impl/DefaultPooledObject.java    | 2 +-
 .../java/org/apache/commons/pool3/impl/DefaultPooledObjectInfo.java     | 2 +-
 .../org/apache/commons/pool3/impl/DefaultPooledObjectInfoMBean.java     | 2 +-
 src/main/java/org/apache/commons/pool3/impl/EvictionConfig.java         | 2 +-
 src/main/java/org/apache/commons/pool3/impl/EvictionPolicy.java         | 2 +-
 src/main/java/org/apache/commons/pool3/impl/EvictionTimer.java          | 2 +-
 src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java | 2 +-
 .../org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java     | 2 +-
 .../org/apache/commons/pool3/impl/GenericKeyedObjectPoolMXBean.java     | 2 +-
 src/main/java/org/apache/commons/pool3/impl/GenericObjectPool.java      | 2 +-
 .../java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java     | 2 +-
 .../java/org/apache/commons/pool3/impl/GenericObjectPoolMXBean.java     | 2 +-
 .../java/org/apache/commons/pool3/impl/InterruptibleReentrantLock.java  | 2 +-
 src/main/java/org/apache/commons/pool3/impl/LinkedBlockingDeque.java    | 2 +-
 src/main/java/org/apache/commons/pool3/impl/NoOpCallStack.java          | 2 +-
 src/main/java/org/apache/commons/pool3/impl/PoolImplUtils.java          | 2 +-
 src/main/java/org/apache/commons/pool3/impl/PooledSoftReference.java    | 2 +-
 .../org/apache/commons/pool3/impl/ResilientPooledObjectFactory.java     | 2 +-
 .../java/org/apache/commons/pool3/impl/SecurityManagerCallStack.java    | 2 +-
 .../java/org/apache/commons/pool3/impl/SoftReferenceObjectPool.java     | 2 +-
 src/main/java/org/apache/commons/pool3/impl/ThrowableCallStack.java     | 2 +-
 src/main/java/org/apache/commons/pool3/impl/package-info.java           | 2 +-
 src/main/java/org/apache/commons/pool3/package-info.java                | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/AbstractProxySource.java   | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/BaseProxyHandler.java      | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/CglibProxyHandler.java     | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/CglibProxySource.java      | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/JdkProxyHandler.java       | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/JdkProxySource.java        | 2 +-
 .../java/org/apache/commons/pool3/proxy/ProxiedKeyedObjectPool.java     | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/ProxiedObjectPool.java     | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/ProxySource.java           | 2 +-
 src/main/java/org/apache/commons/pool3/proxy/package-info.java          | 2 +-
 src/main/javadoc/overview.html                                          | 2 +-
 src/site/resources/download_pool.cgi                                    | 2 +-
 src/site/site.xml                                                       | 2 +-
 src/site/xdoc/download_pool.xml                                         | 2 +-
 src/site/xdoc/examples.xml                                              | 2 +-
 src/site/xdoc/guide/index.xml                                           | 2 +-
 src/site/xdoc/index.xml                                                 | 2 +-
 src/site/xdoc/issue-tracking.xml                                        | 2 +-
 src/site/xdoc/mail-lists.xml                                            | 2 +-
 src/site/xdoc/releases.xml                                              | 2 +-
 src/test/java/org/apache/commons/pool3/AbstractTestKeyedObjectPool.java | 2 +-
 src/test/java/org/apache/commons/pool3/AbstractTestObjectPool.java      | 2 +-
 src/test/java/org/apache/commons/pool3/MethodCall.java                  | 2 +-
 .../java/org/apache/commons/pool3/MethodCallPoolableObjectFactory.java  | 2 +-
 src/test/java/org/apache/commons/pool3/ObjectPoolIssue326.java          | 2 +-
 src/test/java/org/apache/commons/pool3/PoolTest.java                    | 2 +-
 src/test/java/org/apache/commons/pool3/PrivateException.java            | 2 +-
 .../java/org/apache/commons/pool3/TestBaseKeyedPooledObjectFactory.java | 2 +-
 src/test/java/org/apache/commons/pool3/TestBaseObjectPool.java          | 2 +-
 .../java/org/apache/commons/pool3/TestBasePoolableObjectFactory.java    | 2 +-
 src/test/java/org/apache/commons/pool3/TestException.java               | 2 +-
 src/test/java/org/apache/commons/pool3/TestPoolUtils.java               | 2 +-
 src/test/java/org/apache/commons/pool3/TestTrackedUse.java              | 2 +-
 src/test/java/org/apache/commons/pool3/VisitTracker.java                | 2 +-
 src/test/java/org/apache/commons/pool3/VisitTrackerFactory.java         | 2 +-
 src/test/java/org/apache/commons/pool3/Waiter.java                      | 2 +-
 src/test/java/org/apache/commons/pool3/WaiterFactory.java               | 2 +-
 src/test/java/org/apache/commons/pool3/impl/AtomicIntegerFactory.java   | 2 +-
 src/test/java/org/apache/commons/pool3/impl/CallStackTest.java          | 2 +-
 .../java/org/apache/commons/pool3/impl/DisconnectingWaiterFactory.java  | 2 +-
 src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java      | 2 +-
 .../org/apache/commons/pool3/impl/TestAbandonedKeyedObjectPool.java     | 2 +-
 .../java/org/apache/commons/pool3/impl/TestAbandonedObjectPool.java     | 2 +-
 .../java/org/apache/commons/pool3/impl/TestBaseGenericObjectPool.java   | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestCallStackUtils.java     | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestConstants.java          | 2 +-
 .../java/org/apache/commons/pool3/impl/TestDefaultPooledObject.java     | 2 +-
 .../java/org/apache/commons/pool3/impl/TestDefaultPooledObjectInfo.java | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestEvictionConfig.java     | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestEvictionTimer.java      | 2 +-
 .../java/org/apache/commons/pool3/impl/TestGenericKeyedObjectPool.java  | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPool.java  | 2 +-
 .../apache/commons/pool3/impl/TestGenericObjectPoolClassLoaders.java    | 2 +-
 .../commons/pool3/impl/TestGenericObjectPoolFactoryCreateFailure.java   | 2 +-
 .../java/org/apache/commons/pool3/impl/TestLinkedBlockingDeque.java     | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestPoolImplUtils.java      | 2 +-
 .../java/org/apache/commons/pool3/impl/TestPooledSoftReference.java     | 2 +-
 .../org/apache/commons/pool3/impl/TestResilientPooledObjectFactory.java | 2 +-
 src/test/java/org/apache/commons/pool3/impl/TestSoftRefOutOfMemory.java | 2 +-
 .../java/org/apache/commons/pool3/impl/TestSoftReferenceObjectPool.java | 2 +-
 .../apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java  | 2 +-
 src/test/java/org/apache/commons/pool3/performance/PerformanceTest.java | 2 +-
 .../org/apache/commons/pool3/performance/SleepingObjectFactory.java     | 2 +-
 .../org/apache/commons/pool3/pool407/AbstractKeyedPool407Factory.java   | 2 +-
 .../java/org/apache/commons/pool3/pool407/AbstractPool407Factory.java   | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Test.java | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/KeyedPool407.java        | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Config.java  | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Fixture.java | 2 +-
 .../org/apache/commons/pool3/pool407/KeyedPool407NormalFactory.java     | 2 +-
 .../org/apache/commons/pool3/pool407/KeyedPool407NullObjectFactory.java | 2 +-
 .../commons/pool3/pool407/KeyedPool407NullPoolableObjectFactory.java    | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Test.java    | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/Pool407.java             | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/Pool407Config.java       | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/Pool407Constants.java    | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/Pool407Fixture.java      | 2 +-
 .../java/org/apache/commons/pool3/pool407/Pool407NormalFactory.java     | 2 +-
 .../java/org/apache/commons/pool3/pool407/Pool407NullObjectFactory.java | 2 +-
 .../apache/commons/pool3/pool407/Pool407NullPoolableObjectFactory.java  | 2 +-
 src/test/java/org/apache/commons/pool3/pool407/Pool407Test.java         | 2 +-
 .../apache/commons/pool3/proxy/AbstractTestProxiedKeyedObjectPool.java  | 2 +-
 .../org/apache/commons/pool3/proxy/AbstractTestProxiedObjectPool.java   | 2 +-
 .../commons/pool3/proxy/TestProxiedKeyedObjectPoolWithCglibProxy.java   | 2 +-
 .../commons/pool3/proxy/TestProxiedKeyedObjectPoolWithJdkProxy.java     | 2 +-
 .../apache/commons/pool3/proxy/TestProxiedObjectPoolWithCglibProxy.java | 2 +-
 .../apache/commons/pool3/proxy/TestProxiedObjectPoolWithJdkProxy.java   | 2 +-
 158 files changed, 158 insertions(+), 158 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 98c155e9..1c99d0fa 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -5,7 +5,7 @@
 # (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
+#      https://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,
diff --git a/.github/GH-ROBOTS.txt b/.github/GH-ROBOTS.txt
index e3329e55..64a88674 100644
--- a/.github/GH-ROBOTS.txt
+++ b/.github/GH-ROBOTS.txt
@@ -5,7 +5,7 @@
 # (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
+#      https://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,
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 9ebcd0eb..00079caf 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -5,7 +5,7 @@
 # (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
+#      https://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,
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index d126a970..e17973cb 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -7,7 +7,7 @@
   "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
+    https://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
diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index 855f3e85..4d2ae4d7 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -5,7 +5,7 @@
 # (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
+#      https://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,
diff --git a/.github/workflows/dependency-review.yml 
b/.github/workflows/dependency-review.yml
index 9d226a45..33573cf9 100644
--- a/.github/workflows/dependency-review.yml
+++ b/.github/workflows/dependency-review.yml
@@ -6,7 +6,7 @@
 # "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
+#    https://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
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index bfb31afa..8039b0ff 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -5,7 +5,7 @@
 # (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
+#      https://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,
diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index bf47e173..52752cbe 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -5,7 +5,7 @@
 # (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
+#      https://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,
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 3ed50150..b4342f33 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -6,7 +6,7 @@
  (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
+      https://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,
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index db341de3..8f8f321b 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -6,7 +6,7 @@
  (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
+      https://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,
diff --git a/LICENSE.txt b/LICENSE.txt
index 6d96e617..167bbe26 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -193,7 +193,7 @@
    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
+       https://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,
diff --git a/README.md b/README.md
index 116dc24a..867c1004 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
  (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
+      https://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,
diff --git a/SECURITY.md b/SECURITY.md
index 51943ba7..744d4cdd 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -6,7 +6,7 @@
  (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
+      https://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,
diff --git a/doc/ReaderUtil.java b/doc/ReaderUtil.java
index e993b12b..0c292a56 100644
--- a/doc/ReaderUtil.java
+++ b/doc/ReaderUtil.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/doc/ReaderUtilClient.java b/doc/ReaderUtilClient.java
index 5334b59c..878e19d7 100644
--- a/doc/ReaderUtilClient.java
+++ b/doc/ReaderUtilClient.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/doc/StringBufferFactory.java b/doc/StringBufferFactory.java
index e70f991c..b96c862f 100644
--- a/doc/StringBufferFactory.java
+++ b/doc/StringBufferFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/pom.xml b/pom.xml
index 22ec4cc7..3d5240ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
    (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
+       https://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,
diff --git a/pool-RC.sh b/pool-RC.sh
index 63467b56..74354d87 100755
--- a/pool-RC.sh
+++ b/pool-RC.sh
@@ -7,7 +7,7 @@
 # (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
+#     https://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,
diff --git a/pool-pre-RC.sh b/pool-pre-RC.sh
index c9206b9f..3cfa3685 100755
--- a/pool-pre-RC.sh
+++ b/pool-pre-RC.sh
@@ -7,7 +7,7 @@
 # (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
+#     https://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,
diff --git a/pool-release.sh b/pool-release.sh
index f896b2b1..5290630e 100755
--- a/pool-release.sh
+++ b/pool-release.sh
@@ -7,7 +7,7 @@
 # (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
+#     https://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,
diff --git a/src/assembly/bin.xml b/src/assembly/bin.xml
index 327a4579..1d0d7f42 100644
--- a/src/assembly/bin.xml
+++ b/src/assembly/bin.xml
@@ -6,7 +6,7 @@
  (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
+      https://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,
diff --git a/src/assembly/src.xml b/src/assembly/src.xml
index 25bc90cc..9f9f8df5 100644
--- a/src/assembly/src.xml
+++ b/src/assembly/src.xml
@@ -7,7 +7,7 @@ Licensed to the Apache Software Foundation (ASF) under one or 
more
  (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
+      https://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,
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 786608c9..bad1ac91 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -7,7 +7,7 @@
      (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
+          https://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,
diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm
index 370c47e9..ecc258c8 100644
--- a/src/changes/release-notes.vm
+++ b/src/changes/release-notes.vm
@@ -6,7 +6,7 @@
 ## "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
+##  https://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
diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index d57a5051..36a9d49a 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -7,7 +7,7 @@
   (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
+       https://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,
diff --git a/src/conf/findbugs-exclude-filter.xml 
b/src/conf/findbugs-exclude-filter.xml
index 955b605c..a93b46ed 100644
--- a/src/conf/findbugs-exclude-filter.xml
+++ b/src/conf/findbugs-exclude-filter.xml
@@ -7,7 +7,7 @@
    (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
+       https://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,
diff --git a/src/conf/pmd-ruleset.xml b/src/conf/pmd-ruleset.xml
index 5e524849..e4b1a9e1 100644
--- a/src/conf/pmd-ruleset.xml
+++ b/src/conf/pmd-ruleset.xml
@@ -7,7 +7,7 @@
    (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
+       https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/BaseKeyedPooledObjectFactory.java 
b/src/main/java/org/apache/commons/pool3/BaseKeyedPooledObjectFactory.java
index 83d04dda..3e651d49 100644
--- a/src/main/java/org/apache/commons/pool3/BaseKeyedPooledObjectFactory.java
+++ b/src/main/java/org/apache/commons/pool3/BaseKeyedPooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/BaseObject.java 
b/src/main/java/org/apache/commons/pool3/BaseObject.java
index 1f38cdc8..18c6b0d4 100644
--- a/src/main/java/org/apache/commons/pool3/BaseObject.java
+++ b/src/main/java/org/apache/commons/pool3/BaseObject.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/BaseObjectPool.java 
b/src/main/java/org/apache/commons/pool3/BaseObjectPool.java
index ac70463e..252d5176 100644
--- a/src/main/java/org/apache/commons/pool3/BaseObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/BaseObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/BasePooledObjectFactory.java 
b/src/main/java/org/apache/commons/pool3/BasePooledObjectFactory.java
index 387fbe0b..87cfb8e3 100644
--- a/src/main/java/org/apache/commons/pool3/BasePooledObjectFactory.java
+++ b/src/main/java/org/apache/commons/pool3/BasePooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/DestroyMode.java 
b/src/main/java/org/apache/commons/pool3/DestroyMode.java
index 4c7a4fc4..555af4a4 100644
--- a/src/main/java/org/apache/commons/pool3/DestroyMode.java
+++ b/src/main/java/org/apache/commons/pool3/DestroyMode.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/KeyedObjectPool.java 
b/src/main/java/org/apache/commons/pool3/KeyedObjectPool.java
index 012d3f6d..ac1c7846 100644
--- a/src/main/java/org/apache/commons/pool3/KeyedObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/KeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/KeyedPooledObjectFactory.java 
b/src/main/java/org/apache/commons/pool3/KeyedPooledObjectFactory.java
index 0bcd485a..ab900884 100644
--- a/src/main/java/org/apache/commons/pool3/KeyedPooledObjectFactory.java
+++ b/src/main/java/org/apache/commons/pool3/KeyedPooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/ObjectPool.java 
b/src/main/java/org/apache/commons/pool3/ObjectPool.java
index 3d87410f..e16fcadf 100644
--- a/src/main/java/org/apache/commons/pool3/ObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/ObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/PoolUtils.java 
b/src/main/java/org/apache/commons/pool3/PoolUtils.java
index 795f2878..2204e6a9 100644
--- a/src/main/java/org/apache/commons/pool3/PoolUtils.java
+++ b/src/main/java/org/apache/commons/pool3/PoolUtils.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/PooledObject.java 
b/src/main/java/org/apache/commons/pool3/PooledObject.java
index 34de71a5..aeeaa1cd 100644
--- a/src/main/java/org/apache/commons/pool3/PooledObject.java
+++ b/src/main/java/org/apache/commons/pool3/PooledObject.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/PooledObjectFactory.java 
b/src/main/java/org/apache/commons/pool3/PooledObjectFactory.java
index a1cc24f2..390f6b57 100644
--- a/src/main/java/org/apache/commons/pool3/PooledObjectFactory.java
+++ b/src/main/java/org/apache/commons/pool3/PooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/PooledObjectState.java 
b/src/main/java/org/apache/commons/pool3/PooledObjectState.java
index cd65ed73..6094fdb2 100644
--- a/src/main/java/org/apache/commons/pool3/PooledObjectState.java
+++ b/src/main/java/org/apache/commons/pool3/PooledObjectState.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/SwallowedExceptionListener.java 
b/src/main/java/org/apache/commons/pool3/SwallowedExceptionListener.java
index eed1543d..808fd2e7 100644
--- a/src/main/java/org/apache/commons/pool3/SwallowedExceptionListener.java
+++ b/src/main/java/org/apache/commons/pool3/SwallowedExceptionListener.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/TrackedUse.java 
b/src/main/java/org/apache/commons/pool3/TrackedUse.java
index 1866c64b..5e70b047 100644
--- a/src/main/java/org/apache/commons/pool3/TrackedUse.java
+++ b/src/main/java/org/apache/commons/pool3/TrackedUse.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/UsageTracking.java 
b/src/main/java/org/apache/commons/pool3/UsageTracking.java
index 397f9041..3a5a75a9 100644
--- a/src/main/java/org/apache/commons/pool3/UsageTracking.java
+++ b/src/main/java/org/apache/commons/pool3/UsageTracking.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java
index 6eb8e9e9..b03f12c8 100644
--- a/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java
+++ b/src/main/java/org/apache/commons/pool3/impl/AbandonedConfig.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/BaseGenericObjectPool.java 
b/src/main/java/org/apache/commons/pool3/impl/BaseGenericObjectPool.java
index cf6495e5..fe370ef9 100644
--- a/src/main/java/org/apache/commons/pool3/impl/BaseGenericObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/impl/BaseGenericObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/BaseObjectPoolConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/BaseObjectPoolConfig.java
index c39aef69..5abbbece 100644
--- a/src/main/java/org/apache/commons/pool3/impl/BaseObjectPoolConfig.java
+++ b/src/main/java/org/apache/commons/pool3/impl/BaseObjectPoolConfig.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/CallStack.java 
b/src/main/java/org/apache/commons/pool3/impl/CallStack.java
index 33f9049e..7c63558c 100644
--- a/src/main/java/org/apache/commons/pool3/impl/CallStack.java
+++ b/src/main/java/org/apache/commons/pool3/impl/CallStack.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/CallStackUtils.java 
b/src/main/java/org/apache/commons/pool3/impl/CallStackUtils.java
index 111fb85e..a9e1f442 100644
--- a/src/main/java/org/apache/commons/pool3/impl/CallStackUtils.java
+++ b/src/main/java/org/apache/commons/pool3/impl/CallStackUtils.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/DefaultEvictionPolicy.java 
b/src/main/java/org/apache/commons/pool3/impl/DefaultEvictionPolicy.java
index 3a981717..8e24e427 100644
--- a/src/main/java/org/apache/commons/pool3/impl/DefaultEvictionPolicy.java
+++ b/src/main/java/org/apache/commons/pool3/impl/DefaultEvictionPolicy.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObject.java 
b/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObject.java
index 54d64fd8..0f67bd42 100644
--- a/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObject.java
+++ b/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObject.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfo.java 
b/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfo.java
index 0d6c9274..5bf1647f 100644
--- a/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfo.java
+++ b/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfo.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfoMBean.java 
b/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfoMBean.java
index 1e08f0b0..9b7eeebd 100644
--- 
a/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfoMBean.java
+++ 
b/src/main/java/org/apache/commons/pool3/impl/DefaultPooledObjectInfoMBean.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/EvictionConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/EvictionConfig.java
index fb3798e7..15c9e4c1 100644
--- a/src/main/java/org/apache/commons/pool3/impl/EvictionConfig.java
+++ b/src/main/java/org/apache/commons/pool3/impl/EvictionConfig.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/EvictionPolicy.java 
b/src/main/java/org/apache/commons/pool3/impl/EvictionPolicy.java
index 20e5008d..58bc76cf 100644
--- a/src/main/java/org/apache/commons/pool3/impl/EvictionPolicy.java
+++ b/src/main/java/org/apache/commons/pool3/impl/EvictionPolicy.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/EvictionTimer.java 
b/src/main/java/org/apache/commons/pool3/impl/EvictionTimer.java
index ac49f34e..219634eb 100644
--- a/src/main/java/org/apache/commons/pool3/impl/EvictionTimer.java
+++ b/src/main/java/org/apache/commons/pool3/impl/EvictionTimer.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java
index 16352c19..62a6f1a1 100644
--- a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java
index 76725420..3e88b0fd 100644
--- 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java
+++ 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolMXBean.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolMXBean.java
index 51a84e2d..97556700 100644
--- 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolMXBean.java
+++ 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolMXBean.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPool.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPool.java
index b2b34130..5a38515d 100644
--- a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java
index cbfb814b..72437bf4 100644
--- a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java
+++ b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolMXBean.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolMXBean.java
index b20819ca..3e0bd126 100644
--- a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolMXBean.java
+++ b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolMXBean.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/InterruptibleReentrantLock.java 
b/src/main/java/org/apache/commons/pool3/impl/InterruptibleReentrantLock.java
index 13a52b3d..fb176f3a 100644
--- 
a/src/main/java/org/apache/commons/pool3/impl/InterruptibleReentrantLock.java
+++ 
b/src/main/java/org/apache/commons/pool3/impl/InterruptibleReentrantLock.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/LinkedBlockingDeque.java 
b/src/main/java/org/apache/commons/pool3/impl/LinkedBlockingDeque.java
index ec972a65..e4322623 100644
--- a/src/main/java/org/apache/commons/pool3/impl/LinkedBlockingDeque.java
+++ b/src/main/java/org/apache/commons/pool3/impl/LinkedBlockingDeque.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/NoOpCallStack.java 
b/src/main/java/org/apache/commons/pool3/impl/NoOpCallStack.java
index f72e91c2..80b43bd7 100644
--- a/src/main/java/org/apache/commons/pool3/impl/NoOpCallStack.java
+++ b/src/main/java/org/apache/commons/pool3/impl/NoOpCallStack.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/PoolImplUtils.java 
b/src/main/java/org/apache/commons/pool3/impl/PoolImplUtils.java
index 0233f329..1abb5612 100644
--- a/src/main/java/org/apache/commons/pool3/impl/PoolImplUtils.java
+++ b/src/main/java/org/apache/commons/pool3/impl/PoolImplUtils.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/PooledSoftReference.java 
b/src/main/java/org/apache/commons/pool3/impl/PooledSoftReference.java
index b71005b4..2c78fb6c 100644
--- a/src/main/java/org/apache/commons/pool3/impl/PooledSoftReference.java
+++ b/src/main/java/org/apache/commons/pool3/impl/PooledSoftReference.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/ResilientPooledObjectFactory.java 
b/src/main/java/org/apache/commons/pool3/impl/ResilientPooledObjectFactory.java
index a6db26c8..c64219c3 100644
--- 
a/src/main/java/org/apache/commons/pool3/impl/ResilientPooledObjectFactory.java
+++ 
b/src/main/java/org/apache/commons/pool3/impl/ResilientPooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/SecurityManagerCallStack.java 
b/src/main/java/org/apache/commons/pool3/impl/SecurityManagerCallStack.java
index 0a8da2b7..93b2f0da 100644
--- a/src/main/java/org/apache/commons/pool3/impl/SecurityManagerCallStack.java
+++ b/src/main/java/org/apache/commons/pool3/impl/SecurityManagerCallStack.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/SoftReferenceObjectPool.java 
b/src/main/java/org/apache/commons/pool3/impl/SoftReferenceObjectPool.java
index 1a9bfa3b..7c931ae8 100644
--- a/src/main/java/org/apache/commons/pool3/impl/SoftReferenceObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/impl/SoftReferenceObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/ThrowableCallStack.java 
b/src/main/java/org/apache/commons/pool3/impl/ThrowableCallStack.java
index 9e82cf50..1af88d97 100644
--- a/src/main/java/org/apache/commons/pool3/impl/ThrowableCallStack.java
+++ b/src/main/java/org/apache/commons/pool3/impl/ThrowableCallStack.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/impl/package-info.java 
b/src/main/java/org/apache/commons/pool3/impl/package-info.java
index 1d8ffddb..f2bde573 100644
--- a/src/main/java/org/apache/commons/pool3/impl/package-info.java
+++ b/src/main/java/org/apache/commons/pool3/impl/package-info.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/package-info.java 
b/src/main/java/org/apache/commons/pool3/package-info.java
index f7903c45..6223de65 100644
--- a/src/main/java/org/apache/commons/pool3/package-info.java
+++ b/src/main/java/org/apache/commons/pool3/package-info.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/proxy/AbstractProxySource.java 
b/src/main/java/org/apache/commons/pool3/proxy/AbstractProxySource.java
index 6bdf1094..fafc7022 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/AbstractProxySource.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/AbstractProxySource.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/proxy/BaseProxyHandler.java 
b/src/main/java/org/apache/commons/pool3/proxy/BaseProxyHandler.java
index 6bc51d87..085caab1 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/BaseProxyHandler.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/BaseProxyHandler.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/proxy/CglibProxyHandler.java 
b/src/main/java/org/apache/commons/pool3/proxy/CglibProxyHandler.java
index c944d6aa..da3dd255 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/CglibProxyHandler.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/CglibProxyHandler.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/proxy/CglibProxySource.java 
b/src/main/java/org/apache/commons/pool3/proxy/CglibProxySource.java
index cab39eb8..4bb9fde0 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/CglibProxySource.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/CglibProxySource.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/proxy/JdkProxyHandler.java 
b/src/main/java/org/apache/commons/pool3/proxy/JdkProxyHandler.java
index 4cd63e0d..d6d72e38 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/JdkProxyHandler.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/JdkProxyHandler.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/proxy/JdkProxySource.java 
b/src/main/java/org/apache/commons/pool3/proxy/JdkProxySource.java
index 3ba58cca..6d2b5dbe 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/JdkProxySource.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/JdkProxySource.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/proxy/ProxiedKeyedObjectPool.java 
b/src/main/java/org/apache/commons/pool3/proxy/ProxiedKeyedObjectPool.java
index 9595ef6e..b874d687 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/ProxiedKeyedObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/ProxiedKeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/main/java/org/apache/commons/pool3/proxy/ProxiedObjectPool.java 
b/src/main/java/org/apache/commons/pool3/proxy/ProxiedObjectPool.java
index 04001268..882ee2ad 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/ProxiedObjectPool.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/ProxiedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/proxy/ProxySource.java 
b/src/main/java/org/apache/commons/pool3/proxy/ProxySource.java
index 9241a0fe..02ba68b6 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/ProxySource.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/ProxySource.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/java/org/apache/commons/pool3/proxy/package-info.java 
b/src/main/java/org/apache/commons/pool3/proxy/package-info.java
index 25dc5a10..64f335e6 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/package-info.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/package-info.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/main/javadoc/overview.html b/src/main/javadoc/overview.html
index 68e0cdb5..83aacdcf 100644
--- a/src/main/javadoc/overview.html
+++ b/src/main/javadoc/overview.html
@@ -6,7 +6,7 @@
  (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
+      https://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,
diff --git a/src/site/resources/download_pool.cgi 
b/src/site/resources/download_pool.cgi
index 7afe8410..ea2c6b9d 100755
--- a/src/site/resources/download_pool.cgi
+++ b/src/site/resources/download_pool.cgi
@@ -7,7 +7,7 @@
 # (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
+#     https://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,
diff --git a/src/site/site.xml b/src/site/site.xml
index eddaf4ec..c494d0a4 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -7,7 +7,7 @@
  (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
+      https://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,
diff --git a/src/site/xdoc/download_pool.xml b/src/site/xdoc/download_pool.xml
index adfbb71d..23ba9f55 100644
--- a/src/site/xdoc/download_pool.xml
+++ b/src/site/xdoc/download_pool.xml
@@ -7,7 +7,7 @@ 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
+     https://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,
diff --git a/src/site/xdoc/examples.xml b/src/site/xdoc/examples.xml
index 0cd88a69..dfdc8afd 100644
--- a/src/site/xdoc/examples.xml
+++ b/src/site/xdoc/examples.xml
@@ -7,7 +7,7 @@
   (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
+       https://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,
diff --git a/src/site/xdoc/guide/index.xml b/src/site/xdoc/guide/index.xml
index 4dc91fe3..e18b9479 100644
--- a/src/site/xdoc/guide/index.xml
+++ b/src/site/xdoc/guide/index.xml
@@ -7,7 +7,7 @@
   (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
+       https://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,
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 5375acb9..0775639c 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -7,7 +7,7 @@
   (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
+       https://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,
diff --git a/src/site/xdoc/issue-tracking.xml b/src/site/xdoc/issue-tracking.xml
index 4137eff3..48cb540f 100644
--- a/src/site/xdoc/issue-tracking.xml
+++ b/src/site/xdoc/issue-tracking.xml
@@ -7,7 +7,7 @@ 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
+     https://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,
diff --git a/src/site/xdoc/mail-lists.xml b/src/site/xdoc/mail-lists.xml
index 030956f3..609b4514 100644
--- a/src/site/xdoc/mail-lists.xml
+++ b/src/site/xdoc/mail-lists.xml
@@ -7,7 +7,7 @@ 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
+     https://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,
diff --git a/src/site/xdoc/releases.xml b/src/site/xdoc/releases.xml
index 5b9ae756..24e1fb9d 100644
--- a/src/site/xdoc/releases.xml
+++ b/src/site/xdoc/releases.xml
@@ -7,7 +7,7 @@
   (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
+       https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/AbstractTestKeyedObjectPool.java 
b/src/test/java/org/apache/commons/pool3/AbstractTestKeyedObjectPool.java
index ed22fb80..944b1bea 100644
--- a/src/test/java/org/apache/commons/pool3/AbstractTestKeyedObjectPool.java
+++ b/src/test/java/org/apache/commons/pool3/AbstractTestKeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/AbstractTestObjectPool.java 
b/src/test/java/org/apache/commons/pool3/AbstractTestObjectPool.java
index 8f180544..12325271 100644
--- a/src/test/java/org/apache/commons/pool3/AbstractTestObjectPool.java
+++ b/src/test/java/org/apache/commons/pool3/AbstractTestObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/MethodCall.java 
b/src/test/java/org/apache/commons/pool3/MethodCall.java
index f622ae3e..6084dbf6 100644
--- a/src/test/java/org/apache/commons/pool3/MethodCall.java
+++ b/src/test/java/org/apache/commons/pool3/MethodCall.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/MethodCallPoolableObjectFactory.java 
b/src/test/java/org/apache/commons/pool3/MethodCallPoolableObjectFactory.java
index 7e5060b8..afe4a156 100644
--- 
a/src/test/java/org/apache/commons/pool3/MethodCallPoolableObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/MethodCallPoolableObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/ObjectPoolIssue326.java 
b/src/test/java/org/apache/commons/pool3/ObjectPoolIssue326.java
index 49dd7d0c..09511e80 100644
--- a/src/test/java/org/apache/commons/pool3/ObjectPoolIssue326.java
+++ b/src/test/java/org/apache/commons/pool3/ObjectPoolIssue326.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/PoolTest.java 
b/src/test/java/org/apache/commons/pool3/PoolTest.java
index dd016a42..867f0884 100644
--- a/src/test/java/org/apache/commons/pool3/PoolTest.java
+++ b/src/test/java/org/apache/commons/pool3/PoolTest.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/PrivateException.java 
b/src/test/java/org/apache/commons/pool3/PrivateException.java
index 81661d15..1481f526 100644
--- a/src/test/java/org/apache/commons/pool3/PrivateException.java
+++ b/src/test/java/org/apache/commons/pool3/PrivateException.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/TestBaseKeyedPooledObjectFactory.java 
b/src/test/java/org/apache/commons/pool3/TestBaseKeyedPooledObjectFactory.java
index 73a0b402..38b60824 100644
--- 
a/src/test/java/org/apache/commons/pool3/TestBaseKeyedPooledObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/TestBaseKeyedPooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/TestBaseObjectPool.java 
b/src/test/java/org/apache/commons/pool3/TestBaseObjectPool.java
index 44f2e5b6..f3c609bb 100644
--- a/src/test/java/org/apache/commons/pool3/TestBaseObjectPool.java
+++ b/src/test/java/org/apache/commons/pool3/TestBaseObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/TestBasePoolableObjectFactory.java 
b/src/test/java/org/apache/commons/pool3/TestBasePoolableObjectFactory.java
index c1f9b8d4..e494785a 100644
--- a/src/test/java/org/apache/commons/pool3/TestBasePoolableObjectFactory.java
+++ b/src/test/java/org/apache/commons/pool3/TestBasePoolableObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/TestException.java 
b/src/test/java/org/apache/commons/pool3/TestException.java
index a1212829..204c7c83 100644
--- a/src/test/java/org/apache/commons/pool3/TestException.java
+++ b/src/test/java/org/apache/commons/pool3/TestException.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/TestPoolUtils.java 
b/src/test/java/org/apache/commons/pool3/TestPoolUtils.java
index 40a229bc..1f48fecd 100644
--- a/src/test/java/org/apache/commons/pool3/TestPoolUtils.java
+++ b/src/test/java/org/apache/commons/pool3/TestPoolUtils.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/TestTrackedUse.java 
b/src/test/java/org/apache/commons/pool3/TestTrackedUse.java
index 0ce30d0a..142d5f44 100644
--- a/src/test/java/org/apache/commons/pool3/TestTrackedUse.java
+++ b/src/test/java/org/apache/commons/pool3/TestTrackedUse.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/VisitTracker.java 
b/src/test/java/org/apache/commons/pool3/VisitTracker.java
index f04525b5..235f2f9d 100644
--- a/src/test/java/org/apache/commons/pool3/VisitTracker.java
+++ b/src/test/java/org/apache/commons/pool3/VisitTracker.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/VisitTrackerFactory.java 
b/src/test/java/org/apache/commons/pool3/VisitTrackerFactory.java
index 85b41f27..2cb1243f 100644
--- a/src/test/java/org/apache/commons/pool3/VisitTrackerFactory.java
+++ b/src/test/java/org/apache/commons/pool3/VisitTrackerFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/Waiter.java 
b/src/test/java/org/apache/commons/pool3/Waiter.java
index ebb897e2..cc7adbea 100644
--- a/src/test/java/org/apache/commons/pool3/Waiter.java
+++ b/src/test/java/org/apache/commons/pool3/Waiter.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/WaiterFactory.java 
b/src/test/java/org/apache/commons/pool3/WaiterFactory.java
index 2b75e99c..22a2965a 100644
--- a/src/test/java/org/apache/commons/pool3/WaiterFactory.java
+++ b/src/test/java/org/apache/commons/pool3/WaiterFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/AtomicIntegerFactory.java 
b/src/test/java/org/apache/commons/pool3/impl/AtomicIntegerFactory.java
index 71a4aaf4..d9dd5b78 100644
--- a/src/test/java/org/apache/commons/pool3/impl/AtomicIntegerFactory.java
+++ b/src/test/java/org/apache/commons/pool3/impl/AtomicIntegerFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/impl/CallStackTest.java 
b/src/test/java/org/apache/commons/pool3/impl/CallStackTest.java
index 7d7bd697..dda16bca 100644
--- a/src/test/java/org/apache/commons/pool3/impl/CallStackTest.java
+++ b/src/test/java/org/apache/commons/pool3/impl/CallStackTest.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/DisconnectingWaiterFactory.java 
b/src/test/java/org/apache/commons/pool3/impl/DisconnectingWaiterFactory.java
index 9ab1dd71..db9b3c81 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/DisconnectingWaiterFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/DisconnectingWaiterFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java 
b/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
index c13e3d62..2feaee23 100644
--- a/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
+++ b/src/test/java/org/apache/commons/pool3/impl/NoOpCallStackTest.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestAbandonedKeyedObjectPool.java 
b/src/test/java/org/apache/commons/pool3/impl/TestAbandonedKeyedObjectPool.java
index c2328782..213240e8 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestAbandonedKeyedObjectPool.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestAbandonedKeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestAbandonedObjectPool.java 
b/src/test/java/org/apache/commons/pool3/impl/TestAbandonedObjectPool.java
index 269bad02..ac95b74c 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestAbandonedObjectPool.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestAbandonedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestBaseGenericObjectPool.java 
b/src/test/java/org/apache/commons/pool3/impl/TestBaseGenericObjectPool.java
index d86fb24b..6fe8668d 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestBaseGenericObjectPool.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestBaseGenericObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestCallStackUtils.java 
b/src/test/java/org/apache/commons/pool3/impl/TestCallStackUtils.java
index 9ab446f7..cc7e273d 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestCallStackUtils.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestCallStackUtils.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/impl/TestConstants.java 
b/src/test/java/org/apache/commons/pool3/impl/TestConstants.java
index 7f79ffd1..9e010291 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestConstants.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestConstants.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObject.java 
b/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObject.java
index 5e44fc26..32d2978d 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObject.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObject.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObjectInfo.java 
b/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObjectInfo.java
index 728ae817..5fb31a96 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObjectInfo.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestDefaultPooledObjectInfo.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestEvictionConfig.java 
b/src/test/java/org/apache/commons/pool3/impl/TestEvictionConfig.java
index 9a7a825b..c2bb37ed 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestEvictionConfig.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestEvictionConfig.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/impl/TestEvictionTimer.java 
b/src/test/java/org/apache/commons/pool3/impl/TestEvictionTimer.java
index 10e94c43..d6d04082 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestEvictionTimer.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestEvictionTimer.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericKeyedObjectPool.java 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericKeyedObjectPool.java
index b3350728..f2f1d24e 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericKeyedObjectPool.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericKeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPool.java 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPool.java
index 5058e74d..e689bc31 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPool.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolClassLoaders.java
 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolClassLoaders.java
index 6d175dce..a5208df1 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolClassLoaders.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolClassLoaders.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolFactoryCreateFailure.java
 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolFactoryCreateFailure.java
index cf04c75b..a47ed05c 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolFactoryCreateFailure.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestGenericObjectPoolFactoryCreateFailure.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestLinkedBlockingDeque.java 
b/src/test/java/org/apache/commons/pool3/impl/TestLinkedBlockingDeque.java
index af56034e..abd65512 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestLinkedBlockingDeque.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestLinkedBlockingDeque.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/impl/TestPoolImplUtils.java 
b/src/test/java/org/apache/commons/pool3/impl/TestPoolImplUtils.java
index 451e9486..1af2a5b8 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestPoolImplUtils.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestPoolImplUtils.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestPooledSoftReference.java 
b/src/test/java/org/apache/commons/pool3/impl/TestPooledSoftReference.java
index 40cd3560..4cf88218 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestPooledSoftReference.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestPooledSoftReference.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestResilientPooledObjectFactory.java
 
b/src/test/java/org/apache/commons/pool3/impl/TestResilientPooledObjectFactory.java
index 515b9d64..51124457 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestResilientPooledObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestResilientPooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestSoftRefOutOfMemory.java 
b/src/test/java/org/apache/commons/pool3/impl/TestSoftRefOutOfMemory.java
index 00905507..3e25ba23 100644
--- a/src/test/java/org/apache/commons/pool3/impl/TestSoftRefOutOfMemory.java
+++ b/src/test/java/org/apache/commons/pool3/impl/TestSoftRefOutOfMemory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestSoftReferenceObjectPool.java 
b/src/test/java/org/apache/commons/pool3/impl/TestSoftReferenceObjectPool.java
index 2bf47424..c2167eaa 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestSoftReferenceObjectPool.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestSoftReferenceObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java
 
b/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java
index a75a5e8a..57e19de3 100644
--- 
a/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/performance/PerformanceTest.java 
b/src/test/java/org/apache/commons/pool3/performance/PerformanceTest.java
index f913edd9..b44c3643 100644
--- a/src/test/java/org/apache/commons/pool3/performance/PerformanceTest.java
+++ b/src/test/java/org/apache/commons/pool3/performance/PerformanceTest.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/performance/SleepingObjectFactory.java 
b/src/test/java/org/apache/commons/pool3/performance/SleepingObjectFactory.java
index 004ae9c2..f0e8eb6b 100644
--- 
a/src/test/java/org/apache/commons/pool3/performance/SleepingObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/performance/SleepingObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/AbstractKeyedPool407Factory.java
 
b/src/test/java/org/apache/commons/pool3/pool407/AbstractKeyedPool407Factory.java
index 603e3521..3e1c7120 100644
--- 
a/src/test/java/org/apache/commons/pool3/pool407/AbstractKeyedPool407Factory.java
+++ 
b/src/test/java/org/apache/commons/pool3/pool407/AbstractKeyedPool407Factory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Factory.java 
b/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Factory.java
index d53a5a51..d3987fdc 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Factory.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Factory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Test.java 
b/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Test.java
index 106d8a25..6267b622 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Test.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/AbstractPool407Test.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407.java 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407.java
index af0e9dec..84666550 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Config.java 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Config.java
index afe01b70..a4dad268 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Config.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Config.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Fixture.java 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Fixture.java
index ab88a794..5fcbda8f 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Fixture.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Fixture.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NormalFactory.java 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NormalFactory.java
index 15783dee..79e381aa 100644
--- 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NormalFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NormalFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullObjectFactory.java
 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullObjectFactory.java
index 81799d94..a0c54ac9 100644
--- 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullPoolableObjectFactory.java
 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullPoolableObjectFactory.java
index a28b6ada..0b3a6002 100644
--- 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullPoolableObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407NullPoolableObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Test.java 
b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Test.java
index 9ef77615..7c38052e 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Test.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/KeyedPool407Test.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/pool407/Pool407.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407.java
index ef68c186..9237e3af 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/Pool407.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/Pool407.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/pool407/Pool407Config.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407Config.java
index 01db8309..8b2ee213 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/Pool407Config.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/Pool407Config.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/Pool407Constants.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407Constants.java
index 734ca209..ecd04dec 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/Pool407Constants.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/Pool407Constants.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/pool407/Pool407Fixture.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407Fixture.java
index 3b756acd..5ec6f425 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/Pool407Fixture.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/Pool407Fixture.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/Pool407NormalFactory.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407NormalFactory.java
index e93381dc..40eb779b 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/Pool407NormalFactory.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/Pool407NormalFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/Pool407NullObjectFactory.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407NullObjectFactory.java
index 33fa7097..bece79cd 100644
--- 
a/src/test/java/org/apache/commons/pool3/pool407/Pool407NullObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407NullObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/pool407/Pool407NullPoolableObjectFactory.java
 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407NullPoolableObjectFactory.java
index 8c303dc1..a76611b8 100644
--- 
a/src/test/java/org/apache/commons/pool3/pool407/Pool407NullPoolableObjectFactory.java
+++ 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407NullPoolableObjectFactory.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git a/src/test/java/org/apache/commons/pool3/pool407/Pool407Test.java 
b/src/test/java/org/apache/commons/pool3/pool407/Pool407Test.java
index 68ed173e..27737c53 100644
--- a/src/test/java/org/apache/commons/pool3/pool407/Pool407Test.java
+++ b/src/test/java/org/apache/commons/pool3/pool407/Pool407Test.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedKeyedObjectPool.java
 
b/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedKeyedObjectPool.java
index 78b68ce7..f16c6f29 100644
--- 
a/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedKeyedObjectPool.java
+++ 
b/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedKeyedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedObjectPool.java
 
b/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedObjectPool.java
index b8008410..10e3cf2d 100644
--- 
a/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedObjectPool.java
+++ 
b/src/test/java/org/apache/commons/pool3/proxy/AbstractTestProxiedObjectPool.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithCglibProxy.java
 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithCglibProxy.java
index bf5fa4f3..a1b7ad6a 100644
--- 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithCglibProxy.java
+++ 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithCglibProxy.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithJdkProxy.java
 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithJdkProxy.java
index a05a7385..5da2e45c 100644
--- 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithJdkProxy.java
+++ 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedKeyedObjectPoolWithJdkProxy.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithCglibProxy.java
 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithCglibProxy.java
index 7b0a8360..c7914918 100644
--- 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithCglibProxy.java
+++ 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithCglibProxy.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,
diff --git 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithJdkProxy.java
 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithJdkProxy.java
index 01894a37..becd2418 100644
--- 
a/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithJdkProxy.java
+++ 
b/src/test/java/org/apache/commons/pool3/proxy/TestProxiedObjectPoolWithJdkProxy.java
@@ -6,7 +6,7 @@
  * (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
+ *      https://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,

Reply via email to