You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2022/08/07 17:42:11 UTC

[ant-ivy] branch master updated: switch to https

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

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-ivy.git


The following commit(s) were added to refs/heads/master by this push:
     new 259d0543 switch to https
259d0543 is described below

commit 259d05439619d7c3aa9b028b49a561af41c2e163
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Sun Aug 7 19:41:57 2022 +0200

    switch to https
---
 NOTICE                                                            | 2 +-
 .../org/apache/ivy/core/settings/OnlineXmlSettingsParserTest.java | 8 ++++----
 .../java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/NOTICE b/NOTICE
index 774e975f..327047d7 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Ivy (TM)
-Copyright 2007-2019 The Apache Software Foundation
+Copyright 2007-2019,2022 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/test/java/org/apache/ivy/core/settings/OnlineXmlSettingsParserTest.java b/test/java/org/apache/ivy/core/settings/OnlineXmlSettingsParserTest.java
index b98a1479..24a57386 100644
--- a/test/java/org/apache/ivy/core/settings/OnlineXmlSettingsParserTest.java
+++ b/test/java/org/apache/ivy/core/settings/OnlineXmlSettingsParserTest.java
@@ -42,7 +42,7 @@ public class OnlineXmlSettingsParserTest {
         configureURLHandler();
         IvySettings settings = new IvySettings();
         XmlSettingsParser parser = new XmlSettingsParser(settings);
-        parser.parse(new URL("http://ant.apache.org/ivy/test/ivysettings-include-http-url.xml"));
+        parser.parse(new URL("https://ant.apache.org/ivy/test/ivysettings-include-http-url.xml"));
 
         DependencyResolver resolver = settings.getResolver("ivyrep");
         assertNotNull(resolver);
@@ -56,7 +56,7 @@ public class OnlineXmlSettingsParserTest {
         IvySettings settings = new IvySettings();
         XmlSettingsParser parser = new XmlSettingsParser(settings);
         parser.parse(new URL(
-                "http://ant.apache.org/ivy/test/ivysettings-include-http-relative-url.xml"));
+                "https://ant.apache.org/ivy/test/ivysettings-include-http-relative-url.xml"));
 
         DependencyResolver resolver = settings.getResolver("ivyrep");
         assertNotNull(resolver);
@@ -70,7 +70,7 @@ public class OnlineXmlSettingsParserTest {
         IvySettings settings = new IvySettings();
         XmlSettingsParser parser = new XmlSettingsParser(settings);
         parser.parse(new URL(
-                "http://ant.apache.org/ivy/test/ivysettings-include-http-relative-file.xml"));
+                "https://ant.apache.org/ivy/test/ivysettings-include-http-relative-file.xml"));
 
         DependencyResolver resolver = settings.getResolver("ivyrep");
         assertNotNull(resolver);
@@ -86,7 +86,7 @@ public class OnlineXmlSettingsParserTest {
         IvySettings settings = new IvySettings();
         XmlSettingsParser parser = new XmlSettingsParser(settings);
         parser.parse(new URL(
-                "http://ant.apache.org/ivy/test/ivysettings-include-http-absolute-file.xml"));
+                "https://ant.apache.org/ivy/test/ivysettings-include-http-absolute-file.xml"));
 
         DependencyResolver inc = settings.getResolver("includeworks");
         assertNotNull(inc);
diff --git a/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java b/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java
index b4566348..81754e87 100644
--- a/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java
+++ b/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java
@@ -77,7 +77,7 @@ public class UpdateSiteLoaderTest {
     public void testM2Eclipse() throws IOException, ParseException, SAXException,
             URISyntaxException {
         RepoDescriptor site = loader.load(new URI(
-                "http://download.eclipse.org/technology/m2e/releases/"));
+                "https://download.eclipse.org/technology/m2e/releases/"));
         assertTrue(CollectionUtils.toList(site.getModules()).size() > 20);
     }
 
@@ -85,7 +85,7 @@ public class UpdateSiteLoaderTest {
     @Test
     public void testHeliosEclipse() throws IOException, ParseException, SAXException,
             URISyntaxException {
-        RepoDescriptor site = loader.load(new URI("http://download.eclipse.org/releases/helios/"));
+        RepoDescriptor site = loader.load(new URI("https://download.eclipse.org/releases/helios/"));
         assertTrue(CollectionUtils.toList(site.getModules()).size() > 900);
     }