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-configuration.git
The following commit(s) were added to refs/heads/master by this push:
new de77ff7 Use HTTPS to access Apache resources.
de77ff7 is described below
commit de77ff792ddd7132e018f35bfa448a505027a6af
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 6 20:41:15 2019 -0400
Use HTTPS to access Apache resources.
---
pom.xml | 2 +-
src/site/xdoc/index.xml | 2 +-
.../java/org/apache/commons/configuration2/io/TestFileHandler.java | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 827c559..50a5ad4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,7 +40,7 @@
<issueManagement>
<system>jira</system>
- <url>http://issues.apache.org/jira/browse/CONFIGURATION</url>
+ <url>https://issues.apache.org/jira/browse/CONFIGURATION</url>
</issueManagement>
<ciManagement>
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 69c3ce4..cff35c4 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -125,7 +125,7 @@ Integer integer = config.getInteger("number");
<section name="Bugs">
<p>
- Bugs may be reported via the <a
href="http://issues.apache.org/jira/browse/CONFIGURATION">ASF JIRA</a>
+ Bugs may be reported via the <a
href="https://issues.apache.org/jira/browse/CONFIGURATION">ASF JIRA</a>
system. Detailed information can be found on the <a
href="issue-tracking.html">issue tracking page</a>.
</p>
</section>
diff --git
a/src/test/java/org/apache/commons/configuration2/io/TestFileHandler.java
b/src/test/java/org/apache/commons/configuration2/io/TestFileHandler.java
index 27c2257..ee4c8d6 100644
--- a/src/test/java/org/apache/commons/configuration2/io/TestFileHandler.java
+++ b/src/test/java/org/apache/commons/configuration2/io/TestFileHandler.java
@@ -288,10 +288,10 @@ public class TestFileHandler
final FileHandler handler = new FileHandler();
final URL url =
new URL(
-
"http://issues.apache.org/bugzilla/show_bug.cgi?id=37886");
+
"https://issues.apache.org/bugzilla/show_bug.cgi?id=37886");
handler.setURL(url);
assertEquals("Base path incorrect",
- "http://issues.apache.org/bugzilla/", handler.getBasePath());
+ "https://issues.apache.org/bugzilla/", handler.getBasePath());
assertEquals("File name incorrect", "show_bug.cgi",
handler.getFileName());
assertEquals("URL was not correctly stored", url, handler.getURL());