diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-15 09:36:18 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-15 09:36:18 +0700 |
commit | cbdbba0ab06898cd7ab6d69e33d2db990d8b8799 (patch) | |
tree | c3b626837aecc15c53330d6afd68f94d136ff641 /build/src/main/java | |
parent | 70fb6131935806f7e2041c5dfd0ac81164670875 (diff) | |
download | aspectj-cbdbba0ab06898cd7ab6d69e33d2db990d8b8799.tar.gz aspectj-cbdbba0ab06898cd7ab6d69e33d2db990d8b8799.zip |
Globally replace "http:" by "https:" in non-XML files
Maybe, the XML files and Maven wrapper files will follow. First, let us
find out if this breaks the build, maybe some tests are asserting on
"http:". But there, the replacement would also have taken place, so
probably it just works.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'build/src/main/java')
-rw-r--r-- | build/src/main/java/org/aspectj/internal/tools/ant/taskdefs/Checklics.java | 5 | ||||
-rw-r--r-- | build/src/main/java/org/aspectj/internal/tools/build/Util.java | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/build/src/main/java/org/aspectj/internal/tools/ant/taskdefs/Checklics.java b/build/src/main/java/org/aspectj/internal/tools/ant/taskdefs/Checklics.java index aa3d2ba28..685189860 100644 --- a/build/src/main/java/org/aspectj/internal/tools/ant/taskdefs/Checklics.java +++ b/build/src/main/java/org/aspectj/internal/tools/ant/taskdefs/Checklics.java @@ -54,8 +54,8 @@ public class Checklics extends MatchingTask { final String IBM = "IBM"; final String VMWARE = "VMware"; final String IBM_LONG = "International Business Machines"; - final String LIC_APL = "Apache Software Foundation (http://www.apache.org/)"; - final String LIC_MPL = "http://aspectj.org/MPL/"; + final String LIC_APL = "Apache Software Foundation (https://www.apache.org/)"; + final String LIC_MPL = "https://aspectj.org/MPL/"; final String LIC_CPL = "Eclipse Public License"; final String LIC_ECPL = " Public License"; License APL = new License(APACHE_TAG, LIC_APL, APACHE); @@ -655,4 +655,3 @@ class Header { } } // class Header - diff --git a/build/src/main/java/org/aspectj/internal/tools/build/Util.java b/build/src/main/java/org/aspectj/internal/tools/build/Util.java index 74dd8d93b..ca729b47d 100644 --- a/build/src/main/java/org/aspectj/internal/tools/build/Util.java +++ b/build/src/main/java/org/aspectj/internal/tools/build/Util.java @@ -333,7 +333,7 @@ public class Util { * Currently very limited, and will only support the subset of * features that we use. * sources: - * http://www-128.ibm.com/developerworks/library/os-ecl-osgi/index.html + * https://www-128.ibm.com/developerworks/library/os-ecl-osgi/index.html * https://help.eclipse.org/help30/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/osgi/org/osgi/framework/Constants.html */ public static class OSGIBundle { |