diff --git a/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java b/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java index 9e16ebc594..103d39927d 100644 --- a/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java +++ b/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java @@ -19,11 +19,6 @@ package org.apache.maven.project; * under the License. */ -import static org.hamcrest.Matchers.endsWith; -import static org.hamcrest.Matchers.lessThan; -import static org.hamcrest.Matchers.startsWith; -import static org.junit.Assert.assertThat; - import java.io.File; import java.util.ArrayList; import java.util.Arrays; @@ -44,7 +39,10 @@ import org.codehaus.plexus.PlexusTestCase; import org.eclipse.aether.DefaultRepositorySystemSession; import org.eclipse.aether.internal.impl.SimpleLocalRepositoryManagerFactory; import org.eclipse.aether.repository.LocalRepository; + +import static org.hamcrest.Matchers.*; import static org.junit.Assert.assertNotEquals; +import static org.junit.Assert.assertThat; public class PomConstructionTest extends PlexusTestCase @@ -624,18 +622,18 @@ public class PomConstructionTest throws Exception { PomTestWrapper pom = buildPom( "url-inheritance/sub" ); - assertEquals( "http://parent.url/child", pom.getValue( "url" ) ); - assertEquals( "http://parent.url/org", pom.getValue( "organization/url" ) ); - assertEquals( "http://parent.url/license.txt", pom.getValue( "licenses[1]/url" ) ); - assertEquals( "http://parent.url/viewvc/child", pom.getValue( "scm/url" ) ); - assertEquals( "http://parent.url/scm/child", pom.getValue( "scm/connection" ) ); + assertEquals( "https://parent.url/child", pom.getValue( "url" ) ); + assertEquals( "https://parent.url/org", pom.getValue( "organization/url" ) ); + assertEquals( "https://parent.url/license.txt", pom.getValue( "licenses[1]/url" ) ); + assertEquals( "https://parent.url/viewvc/child", pom.getValue( "scm/url" ) ); + assertEquals( "https://parent.url/scm/child", pom.getValue( "scm/connection" ) ); assertEquals( "https://parent.url/scm/child", pom.getValue( "scm/developerConnection" ) ); - assertEquals( "http://parent.url/issues", pom.getValue( "issueManagement/url" ) ); - assertEquals( "http://parent.url/ci", pom.getValue( "ciManagement/url" ) ); - assertEquals( "http://parent.url/dist", pom.getValue( "distributionManagement/repository/url" ) ); - assertEquals( "http://parent.url/snaps", pom.getValue( "distributionManagement/snapshotRepository/url" ) ); - assertEquals( "http://parent.url/site/child", pom.getValue( "distributionManagement/site/url" ) ); - assertEquals( "http://parent.url/download", pom.getValue( "distributionManagement/downloadUrl" ) ); + assertEquals( "https://parent.url/issues", pom.getValue( "issueManagement/url" ) ); + assertEquals( "https://parent.url/ci", pom.getValue( "ciManagement/url" ) ); + assertEquals( "https://parent.url/dist", pom.getValue( "distributionManagement/repository/url" ) ); + assertEquals( "https://parent.url/snaps", pom.getValue( "distributionManagement/snapshotRepository/url" ) ); + assertEquals( "https://parent.url/site/child", pom.getValue( "distributionManagement/site/url" ) ); + assertEquals( "https://parent.url/download", pom.getValue( "distributionManagement/downloadUrl" ) ); } /* MNG-3846*/ @@ -643,18 +641,18 @@ public class PomConstructionTest throws Exception { PomTestWrapper pom = buildPom( "url-inheritance/another-parent/sub" ); - assertEquals( "http://parent.url/ap/child", pom.getValue( "url" ) ); - assertEquals( "http://parent.url/org", pom.getValue( "organization/url" ) ); - assertEquals( "http://parent.url/license.txt", pom.getValue( "licenses[1]/url" ) ); - assertEquals( "http://parent.url/viewvc/ap/child", pom.getValue( "scm/url" ) ); - assertEquals( "http://parent.url/scm/ap/child", pom.getValue( "scm/connection" ) ); + assertEquals( "https://parent.url/ap/child", pom.getValue( "url" ) ); + assertEquals( "https://parent.url/org", pom.getValue( "organization/url" ) ); + assertEquals( "https://parent.url/license.txt", pom.getValue( "licenses[1]/url" ) ); + assertEquals( "https://parent.url/viewvc/ap/child", pom.getValue( "scm/url" ) ); + assertEquals( "https://parent.url/scm/ap/child", pom.getValue( "scm/connection" ) ); assertEquals( "https://parent.url/scm/ap/child", pom.getValue( "scm/developerConnection" ) ); - assertEquals( "http://parent.url/issues", pom.getValue( "issueManagement/url" ) ); - assertEquals( "http://parent.url/ci", pom.getValue( "ciManagement/url" ) ); - assertEquals( "http://parent.url/dist", pom.getValue( "distributionManagement/repository/url" ) ); - assertEquals( "http://parent.url/snaps", pom.getValue( "distributionManagement/snapshotRepository/url" ) ); - assertEquals( "http://parent.url/site/ap/child", pom.getValue( "distributionManagement/site/url" ) ); - assertEquals( "http://parent.url/download", pom.getValue( "distributionManagement/downloadUrl" ) ); + assertEquals( "https://parent.url/issues", pom.getValue( "issueManagement/url" ) ); + assertEquals( "https://parent.url/ci", pom.getValue( "ciManagement/url" ) ); + assertEquals( "https://parent.url/dist", pom.getValue( "distributionManagement/repository/url" ) ); + assertEquals( "https://parent.url/snaps", pom.getValue( "distributionManagement/snapshotRepository/url" ) ); + assertEquals( "https://parent.url/site/ap/child", pom.getValue( "distributionManagement/site/url" ) ); + assertEquals( "https://parent.url/download", pom.getValue( "distributionManagement/downloadUrl" ) ); } //*/ @@ -715,17 +713,17 @@ public class PomConstructionTest assertEquals( "child-name", pom.getValue( "properties/projectName" ) ); assertEquals( "child-desc", pom.getValue( "properties/projectDesc" ) ); - assertEquals( "http://child.org/", pom.getValue( "properties/projectUrl" ) ); + assertEquals( "https://child.org/", pom.getValue( "properties/projectUrl" ) ); assertEquals( "2008", pom.getValue( "properties/projectYear" ) ); assertEquals( "child-org-name", pom.getValue( "properties/projectOrgName" ) ); assertEquals( "2.0.0", pom.getValue( "properties/projectPrereqMvn" ) ); - assertEquals( "http://scm.org/", pom.getValue( "properties/projectScmUrl" ) ); - assertEquals( "http://issue.org/", pom.getValue( "properties/projectIssueUrl" ) ); - assertEquals( "http://ci.org/", pom.getValue( "properties/projectCiUrl" ) ); + assertEquals( "https://scm.org/", pom.getValue( "properties/projectScmUrl" ) ); + assertEquals( "https://issue.org/", pom.getValue( "properties/projectIssueUrl" ) ); + assertEquals( "https://ci.org/", pom.getValue( "properties/projectCiUrl" ) ); assertEquals( "child-dist-repo", pom.getValue( "properties/projectDistRepoName" ) ); - assertEquals( "http://dist.org/", pom.getValue( "properties/projectDistRepoUrl" ) ); - assertEquals( "http://site.org/", pom.getValue( "properties/projectDistSiteUrl" ) ); + assertEquals( "https://dist.org/", pom.getValue( "properties/projectDistRepoUrl" ) ); + assertEquals( "https://site.org/", pom.getValue( "properties/projectDistSiteUrl" ) ); assertEquals( "org.apache.maven.its.mng3831", pom.getValue( "properties/parentGroupId" ) ); assertEquals( "parent", pom.getValue( "properties/parentArtifactId" ) ); @@ -1013,11 +1011,11 @@ public class PomConstructionTest throws Exception { PomTestWrapper pom = this.buildPom( "url-append/child" ); - assertEquals( "http://project.url/child", pom.getValue( "url" ) ); - assertEquals( "http://viewvc.project.url/child", pom.getValue( "scm/url" ) ); - assertEquals( "http://scm.project.url/child", pom.getValue( "scm/connection" ) ); + assertEquals( "https://project.url/child", pom.getValue( "url" ) ); + assertEquals( "https://viewvc.project.url/child", pom.getValue( "scm/url" ) ); + assertEquals( "https://scm.project.url/child", pom.getValue( "scm/connection" ) ); assertEquals( "https://scm.project.url/child", pom.getValue( "scm/developerConnection" ) ); - assertEquals( "http://site.project.url/child", pom.getValue( "distributionManagement/site/url" ) ); + assertEquals( "https://site.project.url/child", pom.getValue( "distributionManagement/site/url" ) ); } /** MNG-0479 */ @@ -1162,15 +1160,15 @@ public class PomConstructionTest assertEquals( "project-name", pom.getValue( "name" ) ); assertEquals( "project-description", pom.getValue( "description" ) ); - assertEquals( "http://project.url/", pom.getValue( "url" ) ); + assertEquals( "https://project.url/", pom.getValue( "url" ) ); assertEquals( "2009", pom.getValue( "inceptionYear" ) ); assertEquals( "project-org", pom.getValue( "organization/name" ) ); - assertEquals( "http://project-org.url/", pom.getValue( "organization/url" ) ); + assertEquals( "https://project-org.url/", pom.getValue( "organization/url" ) ); assertEquals( 1, ( (List) pom.getValue( "licenses" ) ).size() ); assertEquals( "project-license", pom.getValue( "licenses[1]/name" ) ); - assertEquals( "http://project.url/license", pom.getValue( "licenses[1]/url" ) ); + assertEquals( "https://project.url/license", pom.getValue( "licenses[1]/url" ) ); assertEquals( "repo", pom.getValue( "licenses[1]/distribution" ) ); assertEquals( "free", pom.getValue( "licenses[1]/comments" ) ); @@ -1178,9 +1176,9 @@ public class PomConstructionTest assertEquals( "dev", pom.getValue( "developers[1]/id" ) ); assertEquals( "project-developer", pom.getValue( "developers[1]/name" ) ); assertEquals( "developer@", pom.getValue( "developers[1]/email" ) ); - assertEquals( "http://developer", pom.getValue( "developers[1]/url" ) ); + assertEquals( "https://developer", pom.getValue( "developers[1]/url" ) ); assertEquals( "developer", pom.getValue( "developers[1]/organization" ) ); - assertEquals( "http://devel.org", pom.getValue( "developers[1]/organizationUrl" ) ); + assertEquals( "https://devel.org", pom.getValue( "developers[1]/organizationUrl" ) ); assertEquals( "-1", pom.getValue( "developers[1]/timezone" ) ); assertEquals( "yes", pom.getValue( "developers[1]/properties/developer" ) ); assertEquals( 1, ( (List) pom.getValue( "developers[1]/roles" ) ).size() ); @@ -1189,9 +1187,9 @@ public class PomConstructionTest assertEquals( 1, ( (List) pom.getValue( "contributors" ) ).size() ); assertEquals( "project-contributor", pom.getValue( "contributors[1]/name" ) ); assertEquals( "contributor@", pom.getValue( "contributors[1]/email" ) ); - assertEquals( "http://contributor", pom.getValue( "contributors[1]/url" ) ); + assertEquals( "https://contributor", pom.getValue( "contributors[1]/url" ) ); assertEquals( "contributor", pom.getValue( "contributors[1]/organization" ) ); - assertEquals( "http://contrib.org", pom.getValue( "contributors[1]/organizationUrl" ) ); + assertEquals( "https://contrib.org", pom.getValue( "contributors[1]/organizationUrl" ) ); assertEquals( "+1", pom.getValue( "contributors[1]/timezone" ) ); assertEquals( "yes", pom.getValue( "contributors[1]/properties/contributor" ) ); assertEquals( 1, ( (List) pom.getValue( "contributors[1]/roles" ) ).size() ); @@ -1208,16 +1206,16 @@ public class PomConstructionTest assertEquals( "2.0.1", pom.getValue( "prerequisites/maven" ) ); - assertEquals( "http://project.url/trunk", pom.getValue( "scm/url" ) ); - assertEquals( "http://project.url/scm", pom.getValue( "scm/connection" ) ); + assertEquals( "https://project.url/trunk", pom.getValue( "scm/url" ) ); + assertEquals( "https://project.url/scm", pom.getValue( "scm/connection" ) ); assertEquals( "https://project.url/scm", pom.getValue( "scm/developerConnection" ) ); assertEquals( "TAG", pom.getValue( "scm/tag" ) ); assertEquals( "issues", pom.getValue( "issueManagement/system" ) ); - assertEquals( "http://project.url/issues", pom.getValue( "issueManagement/url" ) ); + assertEquals( "https://project.url/issues", pom.getValue( "issueManagement/url" ) ); assertEquals( "ci", pom.getValue( "ciManagement/system" ) ); - assertEquals( "http://project.url/ci", pom.getValue( "ciManagement/url" ) ); + assertEquals( "https://project.url/ci", pom.getValue( "ciManagement/url" ) ); assertEquals( 1, ( (List) pom.getValue( "ciManagement/notifiers" ) ).size() ); assertEquals( "irc", pom.getValue( "ciManagement/notifiers[1]/type" ) ); assertEquals( "ci@", pom.getValue( "ciManagement/notifiers[1]/address" ) ); @@ -1229,19 +1227,19 @@ public class PomConstructionTest assertEquals( "project.distros", pom.getValue( "distributionManagement/repository/id" ) ); assertEquals( "distros", pom.getValue( "distributionManagement/repository/name" ) ); - assertEquals( "http://project.url/dist", pom.getValue( "distributionManagement/repository/url" ) ); + assertEquals( "https://project.url/dist", pom.getValue( "distributionManagement/repository/url" ) ); assertEquals( Boolean.TRUE, pom.getValue( "distributionManagement/repository/uniqueVersion" ) ); assertEquals( "project.snaps", pom.getValue( "distributionManagement/snapshotRepository/id" ) ); assertEquals( "snaps", pom.getValue( "distributionManagement/snapshotRepository/name" ) ); - assertEquals( "http://project.url/snaps", pom.getValue( "distributionManagement/snapshotRepository/url" ) ); + assertEquals( "https://project.url/snaps", pom.getValue( "distributionManagement/snapshotRepository/url" ) ); assertEquals( Boolean.FALSE, pom.getValue( "distributionManagement/snapshotRepository/uniqueVersion" ) ); assertEquals( "project.site", pom.getValue( "distributionManagement/site/id" ) ); assertEquals( "docs", pom.getValue( "distributionManagement/site/name" ) ); - assertEquals( "http://project.url/site", pom.getValue( "distributionManagement/site/url" ) ); + assertEquals( "https://project.url/site", pom.getValue( "distributionManagement/site/url" ) ); - assertEquals( "http://project.url/download", pom.getValue( "distributionManagement/downloadUrl" ) ); + assertEquals( "https://project.url/download", pom.getValue( "distributionManagement/downloadUrl" ) ); assertEquals( "reloc-gid", pom.getValue( "distributionManagement/relocation/groupId" ) ); assertEquals( "reloc-aid", pom.getValue( "distributionManagement/relocation/artifactId" ) ); assertEquals( "reloc-version", pom.getValue( "distributionManagement/relocation/version" ) ); @@ -1279,7 +1277,7 @@ public class PomConstructionTest assertEquals( 2, ( (List) pom.getValue( "repositories" ) ).size() ); assertEquals( "project-remote-repo", pom.getValue( "repositories[1]/id" ) ); - assertEquals( "http://project.url/remote", pom.getValue( "repositories[1]/url" ) ); + assertEquals( "https://project.url/remote", pom.getValue( "repositories[1]/url" ) ); assertEquals( "repo", pom.getValue( "repositories[1]/name" ) ); assertEquals( RepositorySystem.DEFAULT_REMOTE_REPO_ID, pom.getValue( "repositories[2]/id" ) ); assertEquals( RepositorySystem.DEFAULT_REMOTE_REPO_URL, pom.getValue( "repositories[2]/url" ) ); @@ -1457,12 +1455,12 @@ public class PomConstructionTest throws Exception { PomTestWrapper pom = this.buildPom( "url-no-decoding" ); - assertEquals( "http://maven.apache.org/spacy%20path", pom.getValue( "url" ) ); - assertEquals( "http://svn.apache.org/viewvc/spacy%20path", pom.getValue( "scm/url" ) ); + assertEquals( "https://maven.apache.org/spacy%20path", pom.getValue( "url" ) ); + assertEquals( "https://svn.apache.org/viewvc/spacy%20path", pom.getValue( "scm/url" ) ); assertEquals( "scm:svn:svn+ssh://svn.apache.org/spacy%20path", pom.getValue( "scm/connection" ) ); assertEquals( "scm:svn:svn+ssh://svn.apache.org/spacy%20path", pom.getValue( "scm/developerConnection" ) ); - assertEquals( "http://issues.apache.org/spacy%20path", pom.getValue( "issueManagement/url" ) ); - assertEquals( "http://ci.apache.org/spacy%20path", pom.getValue( "ciManagement/url" ) ); + assertEquals( "https://issues.apache.org/spacy%20path", pom.getValue( "issueManagement/url" ) ); + assertEquals( "https://ci.apache.org/spacy%20path", pom.getValue( "ciManagement/url" ) ); assertEquals( "scm:svn:svn+ssh://dist.apache.org/spacy%20path", pom.getValue( "distributionManagement/repository/url" ) ); assertEquals( "scm:svn:svn+ssh://snap.apache.org/spacy%20path", @@ -1635,7 +1633,7 @@ public class PomConstructionTest PomTestWrapper pom = buildPom( "licenses-inheritance/child-2" ); assertEquals( 1, ( (List) pom.getValue( "licenses" ) ).size() ); assertEquals( "child-license", pom.getValue( "licenses[1]/name" ) ); - assertEquals( "http://child.url/license", pom.getValue( "licenses[1]/url" ) ); + assertEquals( "https://child.url/license", pom.getValue( "licenses[1]/url" ) ); } public void testDevelopersAreInheritedButNotAggregated() diff --git a/maven-core/src/test/resources-project-builder/artifact-id-inheritance/child/pom.xml b/maven-core/src/test/resources-project-builder/artifact-id-inheritance/child/pom.xml index eee189d431..c81c426c32 100644 --- a/maven-core/src/test/resources-project-builder/artifact-id-inheritance/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/artifact-id-inheritance/child/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml index f22afbc0ba..fa49e12322 100644 --- a/maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 @@ -31,5 +31,5 @@ under the License. NOTE: This extends the test to check an edge case of URL adjustment which must not error out during inheritance if the child misses the artifactId (as to be reported by validation). --> - http://maven.apache.org/ + https://maven.apache.org/ diff --git a/maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml index 1885fc481b..f6deed8edf 100644 --- a/maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/basedir-interpolation/pom-with-unusual-name.xml b/maven-core/src/test/resources-project-builder/basedir-interpolation/pom-with-unusual-name.xml index 1c037e6306..ddc830e533 100644 --- a/maven-core/src/test/resources-project-builder/basedir-interpolation/pom-with-unusual-name.xml +++ b/maven-core/src/test/resources-project-builder/basedir-interpolation/pom-with-unusual-name.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml index f1d4e6ca94..fea80c503a 100644 --- a/maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml index 992eac1eb2..2d8017b5c5 100644 --- a/maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml index 262af4fbc0..30ad54b5c1 100644 --- a/maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/build-extension-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml b/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml index dc8f6f5b8a..e9e533f2c3 100644 --- a/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/complete-model/w-parent/pom.xml b/maven-core/src/test/resources-project-builder/complete-model/w-parent/pom.xml index ebcd7d1ee9..ae49ae2fb0 100644 --- a/maven-core/src/test/resources-project-builder/complete-model/w-parent/pom.xml +++ b/maven-core/src/test/resources-project-builder/complete-model/w-parent/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml b/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml index 68ca28dd31..9e28166be9 100644 --- a/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml @@ -9,7 +9,7 @@ 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 @@ -35,16 +35,16 @@ under the License. project-name project-description - http://project.url/ + https://project.url/ 2009 project-org - http://project-org.url/ + https://project-org.url/ project-license - http://project.url/license + https://project.url/license repo free @@ -55,9 +55,9 @@ under the License. dev project-developer developer@ - http://developer + https://developer developer - http://devel.org + https://devel.org devel @@ -71,9 +71,9 @@ under the License. project-contributor contributor@ - http://contributor + https://contributor contributor - http://contrib.org + https://contrib.org contrib @@ -102,18 +102,18 @@ under the License. - http://project.url/trunk - http://project.url/scm + https://project.url/trunk + https://project.url/scm https://project.url/scm TAG issues - http://project.url/issues + https://project.url/issues ci - http://project.url/ci + https://project.url/ci irc @@ -130,22 +130,22 @@ under the License. - http://project.url/dist + https://project.url/dist project.distros distros - http://project.url/snaps + https://project.url/snaps project.snaps snaps false - http://project.url/site + https://project.url/site project.site docs - http://project.url/download + https://project.url/download reloc-gid reloc-aid @@ -200,7 +200,7 @@ under the License. project-remote-repo - http://project.url/remote + https://project.url/remote repo diff --git a/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml b/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml index 7b1ad79410..5913d1834f 100644 --- a/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml +++ b/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml @@ -9,7 +9,7 @@ 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 @@ -29,16 +29,16 @@ under the License. project-name project-description - http://project.url/ + https://project.url/ 2009 project-org - http://project-org.url/ + https://project-org.url/ project-license - http://project.url/license + https://project.url/license repo free @@ -49,9 +49,9 @@ under the License. dev project-developer developer@ - http://developer + https://developer developer - http://devel.org + https://devel.org devel @@ -65,9 +65,9 @@ under the License. project-contributor contributor@ - http://contributor + https://contributor contributor - http://contrib.org + https://contrib.org contrib @@ -96,18 +96,18 @@ under the License. - http://project.url/trunk - http://project.url/scm + https://project.url/trunk + https://project.url/scm https://project.url/scm TAG issues - http://project.url/issues + https://project.url/issues ci - http://project.url/ci + https://project.url/ci irc @@ -124,22 +124,22 @@ under the License. - http://project.url/dist + https://project.url/dist project.distros distros - http://project.url/snaps + https://project.url/snaps project.snaps snaps false - http://project.url/site + https://project.url/site project.site docs - http://project.url/download + https://project.url/download reloc-gid reloc-aid @@ -194,7 +194,7 @@ under the License. project-remote-repo - http://project.url/remote + https://project.url/remote repo diff --git a/maven-core/src/test/resources-project-builder/contributors-inheritance/child-2/pom.xml b/maven-core/src/test/resources-project-builder/contributors-inheritance/child-2/pom.xml index 745289fdd5..bb6dfa5a7a 100644 --- a/maven-core/src/test/resources-project-builder/contributors-inheritance/child-2/pom.xml +++ b/maven-core/src/test/resources-project-builder/contributors-inheritance/child-2/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/contributors-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/contributors-inheritance/pom.xml index 1f65eb5fd0..11148369b8 100644 --- a/maven-core/src/test/resources-project-builder/contributors-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/contributors-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/dependency-inheritance/maven-parent.xml b/maven-core/src/test/resources-project-builder/dependency-inheritance/maven-parent.xml index 0d93ad2fe3..ee7092ddbc 100644 --- a/maven-core/src/test/resources-project-builder/dependency-inheritance/maven-parent.xml +++ b/maven-core/src/test/resources-project-builder/dependency-inheritance/maven-parent.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml index 736b793c8e..7f9e4ff59c 100644 --- a/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/dependency-inheritance/sub/pom.xml b/maven-core/src/test/resources-project-builder/dependency-inheritance/sub/pom.xml index aaf8e8e5ab..d5d80d8efe 100644 --- a/maven-core/src/test/resources-project-builder/dependency-inheritance/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/dependency-inheritance/sub/pom.xml @@ -4,7 +4,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. 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 Unless required by + the License. You may obtain a copy of the License at 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mgmt/pom.xml index 23dfedebb7..8406ddee28 100644 --- a/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mgmt/pom.xml index c853873428..d1b6cba04e 100644 --- a/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml b/maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml index dad2375b73..64f53389a8 100644 --- a/maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml +++ b/maven-core/src/test/resources-project-builder/developers-inheritance/child-2/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/developers-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/developers-inheritance/pom.xml index 6e7c44d113..e4d8c5e26a 100644 --- a/maven-core/src/test/resources-project-builder/developers-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/developers-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/distribution-management/pom.xml b/maven-core/src/test/resources-project-builder/distribution-management/pom.xml index 1a0acb08f0..4ecd67ec79 100644 --- a/maven-core/src/test/resources-project-builder/distribution-management/pom.xml +++ b/maven-core/src/test/resources-project-builder/distribution-management/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/empty-scm/pom.xml b/maven-core/src/test/resources-project-builder/empty-scm/pom.xml index a0462ddd95..fb6b59441e 100644 --- a/maven-core/src/test/resources-project-builder/empty-scm/pom.xml +++ b/maven-core/src/test/resources-project-builder/empty-scm/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml b/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml index bfc1c804f2..acd86b9413 100644 --- a/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml +++ b/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml b/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml index a05d45d062..7fa5dd0cde 100644 --- a/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml +++ b/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/full-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/full-interpolation/pom.xml index 503dadb9ee..2fe7ea3811 100644 --- a/maven-core/src/test/resources-project-builder/full-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/full-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml b/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml index 4db43cd413..8464f9c3d8 100644 --- a/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml +++ b/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml @@ -9,7 +9,7 @@ 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 @@ -40,7 +40,7 @@ under the License. equal-repo-id - http://maven.apache.org/null + https://maven.apache.org/null false diff --git a/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml b/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml index e65d26c24b..277207e308 100644 --- a/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/pom.xml b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/pom.xml index 640cf2881c..a77b7c46a1 100644 --- a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml index 2aa40dedd7..0056606998 100644 --- a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/pom.xml b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/pom.xml index 3e11a6d63c..dc00b1c53e 100644 --- a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/sub/pom.xml b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/sub/pom.xml index 49c8fd21e3..887161cd82 100644 --- a/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/interpolation-cli-wins/pom.xml b/maven-core/src/test/resources-project-builder/interpolation-cli-wins/pom.xml index 39d8d9f8fd..bbd40860a0 100644 --- a/maven-core/src/test/resources-project-builder/interpolation-cli-wins/pom.xml +++ b/maven-core/src/test/resources-project-builder/interpolation-cli-wins/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/jdk-activation/pom.xml b/maven-core/src/test/resources-project-builder/jdk-activation/pom.xml index c0431f5807..45fce9b141 100644 --- a/maven-core/src/test/resources-project-builder/jdk-activation/pom.xml +++ b/maven-core/src/test/resources-project-builder/jdk-activation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/join-different-containers-same-id/pom.xml b/maven-core/src/test/resources-project-builder/join-different-containers-same-id/pom.xml index b3f48caa3a..8b30e608bc 100644 --- a/maven-core/src/test/resources-project-builder/join-different-containers-same-id/pom.xml +++ b/maven-core/src/test/resources-project-builder/join-different-containers-same-id/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/licenses-inheritance/child-2/pom.xml b/maven-core/src/test/resources-project-builder/licenses-inheritance/child-2/pom.xml index 9fd30bf519..3d5ad18737 100644 --- a/maven-core/src/test/resources-project-builder/licenses-inheritance/child-2/pom.xml +++ b/maven-core/src/test/resources-project-builder/licenses-inheritance/child-2/pom.xml @@ -9,7 +9,7 @@ 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 @@ -40,7 +40,7 @@ under the License. child-license - http://child.url/license + https://child.url/license repo diff --git a/maven-core/src/test/resources-project-builder/licenses-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/licenses-inheritance/pom.xml index 641bb37f0e..90d102249b 100644 --- a/maven-core/src/test/resources-project-builder/licenses-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/licenses-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 @@ -30,7 +30,7 @@ under the License. parent-license - http://parent.url/license + https://parent.url/license repo diff --git a/maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml b/maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml index 8e9e62376a..3b760df391 100644 --- a/maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml @@ -9,7 +9,7 @@ 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 @@ -38,11 +38,11 @@ under the License. https://child.url/scm - http://child.url/issues + https://child.url/issues child-ci - http://child.url/ci + https://child.url/ci diff --git a/maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml index 8bbe6eaef0..2774294df5 100644 --- a/maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 @@ -34,22 +34,22 @@ under the License. parent-org - http://parent.url/org + https://parent.url/org - http://parent.url/viewvc + https://parent.url/viewvc http://parent.url/scm https://parent.url/scm parent-tag parent-issues - http://parent.url/issues + https://parent.url/issues parent-ci - http://parent.url/ci + https://parent.url/ci irc diff --git a/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml b/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml index 95ce7fe6dc..86232241f7 100644 --- a/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml +++ b/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/child-2/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/pom.xml index c9b05dfd96..86c61324c3 100644 --- a/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/mailing-lists-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/managed-profile-dependency/pom.xml b/maven-core/src/test/resources-project-builder/managed-profile-dependency/pom.xml index 88c9813af9..4ccda8f68c 100644 --- a/maven-core/src/test/resources-project-builder/managed-profile-dependency/pom.xml +++ b/maven-core/src/test/resources-project-builder/managed-profile-dependency/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/managed-profile-dependency/sub/pom.xml b/maven-core/src/test/resources-project-builder/managed-profile-dependency/sub/pom.xml index 88204fcd94..c9e875a148 100644 --- a/maven-core/src/test/resources-project-builder/managed-profile-dependency/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/managed-profile-dependency/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-filter-order/pom.xml b/maven-core/src/test/resources-project-builder/merged-filter-order/pom.xml index 32ac97eb7d..fd3e6bb7f5 100644 --- a/maven-core/src/test/resources-project-builder/merged-filter-order/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-filter-order/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml index 340b3fc914..bd6895230a 100644 --- a/maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/pom.xml index aba6bdf0d3..edeffd78be 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/sub/pom.xml index 1877ea5488..639cda9792 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/pom.xml index 10226cfb4b..9a02a26940 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/sub/pom.xml index 1877ea5488..639cda9792 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/wo-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/pom.xml index fc09dba181..eb58d36113 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/sub/pom.xml index 2148aa9ba2..8179e6886d 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/pom.xml index b9c3f18ba6..e46e3fbe94 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/sub/pom.xml index fab233b245..bd031df476 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml index ee4dedcfd2..b39234194b 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml index bf777db9f7..3fd4e68b32 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml index a816975f7b..84bad98baf 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml index bf777db9f7..3fd4e68b32 100644 --- a/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/micromailer/pom.xml b/maven-core/src/test/resources-project-builder/micromailer/pom.xml index 44f1cd9f22..de01fd0753 100644 --- a/maven-core/src/test/resources-project-builder/micromailer/pom.xml +++ b/maven-core/src/test/resources-project-builder/micromailer/pom.xml @@ -17,7 +17,7 @@ scm:svn:http://svn.sonatype.org/spice/trunk/micromailer - http://svn.sonatype.org/spice/trunk/micromailer + https://svn.sonatype.org/spice/trunk/micromailer scm:svn:https://svn.sonatype.org/spice/trunk/micromailer diff --git a/maven-core/src/test/resources-project-builder/micromailer/spice-parent-9.pom b/maven-core/src/test/resources-project-builder/micromailer/spice-parent-9.pom index 8a81b7fdbb..751ebaa46b 100644 --- a/maven-core/src/test/resources-project-builder/micromailer/spice-parent-9.pom +++ b/maven-core/src/test/resources-project-builder/micromailer/spice-parent-9.pom @@ -8,7 +8,7 @@ scm:svn:http://svn.sonatype.org/spice/trunk/spice-parent - http://svn.sonatype.org/spice/trunk/spice-parent + https://svn.sonatype.org/spice/trunk/spice-parent scm:svn:https://svn.sonatype.org/spice/trunk/spice-parent diff --git a/maven-core/src/test/resources-project-builder/multiple-repos/pom.xml b/maven-core/src/test/resources-project-builder/multiple-repos/pom.xml index e59cd0c3b0..d47d04994f 100644 --- a/maven-core/src/test/resources-project-builder/multiple-repos/pom.xml +++ b/maven-core/src/test/resources-project-builder/multiple-repos/pom.xml @@ -9,7 +9,7 @@ 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 @@ -33,7 +33,7 @@ under the License. central-parent Maven Repository Switchboard default - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 false diff --git a/maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml b/maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml index d7b210201a..bf292d784e 100644 --- a/maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml @@ -9,7 +9,7 @@ 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 @@ -36,7 +36,7 @@ under the License. central-child Maven Repository Switchboard default - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 false diff --git a/maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml index 5632fad4c2..07a3264bb0 100644 --- a/maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/parent-pom-packaging/pom.xml b/maven-core/src/test/resources-project-builder/parent-pom-packaging/pom.xml index 1695245591..eecf6967fa 100644 --- a/maven-core/src/test/resources-project-builder/parent-pom-packaging/pom.xml +++ b/maven-core/src/test/resources-project-builder/parent-pom-packaging/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/parent-pom-packaging/sub/pom.xml b/maven-core/src/test/resources-project-builder/parent-pom-packaging/sub/pom.xml index eca47eb37d..c07814e4bf 100644 --- a/maven-core/src/test/resources-project-builder/parent-pom-packaging/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/parent-pom-packaging/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/platform-file-separator/pom.xml b/maven-core/src/test/resources-project-builder/platform-file-separator/pom.xml index 41f35c148b..0654b1ddb6 100644 --- a/maven-core/src/test/resources-project-builder/platform-file-separator/pom.xml +++ b/maven-core/src/test/resources-project-builder/platform-file-separator/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml index 60180d5135..1230c63030 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml index cef53d32f4..81d1bbbc86 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml index 72ab3f4525..f69bf19fc2 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml index 7023503089..67f76aac8a 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-plugin-mgmt/pom.xml index 2f350715ec..a5df9fb56d 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml index f2d8c6c08a..f1eb80f81b 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml index c844b44748..f108ef6a9a 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-merging/child/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-merging/child/pom.xml index f81724486f..ec93a22843 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-merging/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-merging/child/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml index 12f2c2d65b..3900b0f913 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-order/w-plugin-mgmt/pom.xml index 7d7dfd81d9..7ff6e9924a 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-config-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-config-order/wo-plugin-mgmt/pom.xml index e300fe1ed6..d1c7080eab 100644 --- a/maven-core/src/test/resources-project-builder/plugin-config-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-config-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml index 9f66b49ee8..f9ac01ee98 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml index 4e1eafe34f..e06f53b131 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/w-plugin-mgmt/pom.xml index d4ac3b0e85..23033d209d 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/wo-plugin-mgmt/pom.xml index 438d9d1a2b..83f2d6d54f 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-goals-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml index 2b534d766a..cbed746d1e 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml index f60cfd5c98..9049c4ea15 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/wo-merge/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/wo-merge/pom.xml index 23cfc0c234..a79263138f 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/wo-merge/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-inheritance/wo-merge/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/pom.xml index b64af3ae4a..93ab9e1162 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml index f96116adfb..4c891c2a9d 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/pom.xml index 127fa25938..0d60319a9b 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/sub/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/sub/pom.xml index 61841aecff..5b21d660db 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml index 6bcfee56c3..2989be8ddb 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml index 3129ad02d9..47228a5fd9 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml index 63db85f67b..7fb44700f0 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml index 3129ad02d9..47228a5fd9 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml index 864fedb9e2..37c799416f 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml index 6035e816f6..4f26b8efcd 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml index 2c552d4cfa..e391b2280f 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-order/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-order/wo-plugin-mgmt/pom.xml index c4ceaae33c..f00187a129 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-order/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-order/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml index fbae181f66..87f32ccbd4 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/wo-plugin-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/wo-plugin-mgmt/pom.xml index 7910084f74..26d157eae2 100644 --- a/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/wo-plugin-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/wo-plugin-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/pom.xml b/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/pom.xml index e42b030686..8fd7d8ea22 100644 --- a/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/sub/pom.xml b/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/sub/pom.xml index 8d44b8ccf3..85bc7becb0 100644 --- a/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-inheritance-order/child/pom.xml b/maven-core/src/test/resources-project-builder/plugin-inheritance-order/child/pom.xml index 5350fa8795..b6b16c49fd 100644 --- a/maven-core/src/test/resources-project-builder/plugin-inheritance-order/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-inheritance-order/child/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-inheritance-order/pom.xml b/maven-core/src/test/resources-project-builder/plugin-inheritance-order/pom.xml index 477a759531..99a321a7d3 100644 --- a/maven-core/src/test/resources-project-builder/plugin-inheritance-order/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-inheritance-order/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml b/maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml index 76459e2d53..efe3acd123 100644 --- a/maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-management-duplicate/pom.xml b/maven-core/src/test/resources-project-builder/plugin-management-duplicate/pom.xml index 37e7278a46..80f10131e2 100644 --- a/maven-core/src/test/resources-project-builder/plugin-management-duplicate/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-management-duplicate/pom.xml @@ -8,7 +8,7 @@ 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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for diff --git a/maven-core/src/test/resources-project-builder/plugin-management-duplicate/sub/pom.xml b/maven-core/src/test/resources-project-builder/plugin-management-duplicate/sub/pom.xml index 5e844b7987..a3af61651e 100644 --- a/maven-core/src/test/resources-project-builder/plugin-management-duplicate/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-management-duplicate/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/child/pom.xml b/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/child/pom.xml index fce3588233..e6b034dcf8 100644 --- a/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/child/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml b/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml index d9412769ab..ecd5b29880 100644 --- a/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml index 85b7bd945b..fb68de2954 100644 --- a/maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/pom-encoding/latin-1/pom.xml b/maven-core/src/test/resources-project-builder/pom-encoding/latin-1/pom.xml index b338399f12..80902fabeb 100644 --- a/maven-core/src/test/resources-project-builder/pom-encoding/latin-1/pom.xml +++ b/maven-core/src/test/resources-project-builder/pom-encoding/latin-1/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml b/maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml index 4400aa705d..c563fa9f80 100644 --- a/maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml +++ b/maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml index f96a940015..70161be804 100644 --- a/maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 @@ -33,16 +33,16 @@ under the License. parent-name parent-description - http://parent.url/ + https://parent.url/ 2008 parent-org - http://parent-org.url/ + https://parent-org.url/ parent-license - http://parent.url/license + https://parent.url/license repo @@ -74,27 +74,27 @@ under the License. - http://parent.url/trunk + https://parent.url/trunk http://parent.url/scm https://parent.url/scm - http://parent.url/issues + https://parent.url/issues - http://parent.url/ci + https://parent.url/ci - http://parent.url/dist + https://parent.url/dist parent.distros - http://parent.url/snaps + https://parent.url/snaps parent.snaps - http://parent.url/site + https://parent.url/site parent.site http://parent.url/download @@ -130,7 +130,7 @@ under the License. parent-remote-repo - http://parent.url/remote + https://parent.url/remote diff --git a/maven-core/src/test/resources-project-builder/pom-inheritance/sub/pom.xml b/maven-core/src/test/resources-project-builder/pom-inheritance/sub/pom.xml index 2dbddd6b96..724d697d19 100644 --- a/maven-core/src/test/resources-project-builder/pom-inheritance/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/pom-inheritance/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/prerequisites-inheritance/child/pom.xml b/maven-core/src/test/resources-project-builder/prerequisites-inheritance/child/pom.xml index 910018abb8..3a5c5a3e85 100644 --- a/maven-core/src/test/resources-project-builder/prerequisites-inheritance/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/prerequisites-inheritance/child/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/prerequisites-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/prerequisites-inheritance/pom.xml index 3e4d8a4503..cf737c66de 100644 --- a/maven-core/src/test/resources-project-builder/prerequisites-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/prerequisites-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/profile-dependencies-multiple-profiles/pom.xml b/maven-core/src/test/resources-project-builder/profile-dependencies-multiple-profiles/pom.xml index d7af4e27ba..23fb2df2f0 100644 --- a/maven-core/src/test/resources-project-builder/profile-dependencies-multiple-profiles/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-dependencies-multiple-profiles/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml b/maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml index 3fe02fbd22..1d2e8d88e9 100644 --- a/maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml b/maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml index daf4607fc7..7467fbfc0e 100644 --- a/maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml b/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml index e283bb09be..2f64c4ff6e 100644 --- a/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/sub/pom.xml b/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/sub/pom.xml index 3614e30527..ab49adf364 100644 --- a/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/profile-plugins/pom.xml b/maven-core/src/test/resources-project-builder/profile-plugins/pom.xml index f25e295310..912fdf36d6 100644 --- a/maven-core/src/test/resources-project-builder/profile-plugins/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-plugins/pom.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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the diff --git a/maven-core/src/test/resources-project-builder/profile-properties-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/profile-properties-interpolation/pom.xml index a95e253b63..348dc21d07 100644 --- a/maven-core/src/test/resources-project-builder/profile-properties-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/profile-properties-interpolation/pom.xml @@ -8,7 +8,7 @@ 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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for @@ -34,7 +34,7 @@ These are some POM elements we would like to interpolate with properties from the profile. --> - http://maven.apache.org/${test} + https://maven.apache.org/${test} FAILED diff --git a/maven-core/src/test/resources-project-builder/properties-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/properties-inheritance/pom.xml index 6d17dd3a0a..4a4c0a0cd2 100644 --- a/maven-core/src/test/resources-project-builder/properties-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/properties-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/properties-inheritance/sub/pom.xml b/maven-core/src/test/resources-project-builder/properties-inheritance/sub/pom.xml index c5394df5c3..9c42a92782 100644 --- a/maven-core/src/test/resources-project-builder/properties-inheritance/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/properties-inheritance/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/repo-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/repo-inheritance/pom.xml index 5905657a3a..b029822802 100644 --- a/maven-core/src/test/resources-project-builder/repo-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/repo-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/reporting-plugin-config/pom.xml b/maven-core/src/test/resources-project-builder/reporting-plugin-config/pom.xml index bb98c079b6..4a5063805a 100644 --- a/maven-core/src/test/resources-project-builder/reporting-plugin-config/pom.xml +++ b/maven-core/src/test/resources-project-builder/reporting-plugin-config/pom.xml @@ -8,7 +8,7 @@ 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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the diff --git a/maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml b/maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml index cdc8fb1f2f..33cb0fd661 100644 --- a/maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml @@ -8,7 +8,7 @@ 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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the diff --git a/maven-core/src/test/resources-project-builder/system-property-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/system-property-interpolation/pom.xml index 7d48d903ab..0edd200779 100644 --- a/maven-core/src/test/resources-project-builder/system-property-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/system-property-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/unc-path/pom.xml b/maven-core/src/test/resources-project-builder/unc-path/pom.xml index b2b9775527..c1e63ba556 100644 --- a/maven-core/src/test/resources-project-builder/unc-path/pom.xml +++ b/maven-core/src/test/resources-project-builder/unc-path/pom.xml @@ -8,7 +8,7 @@ 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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the diff --git a/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml b/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml index 5bb4bbb445..62c93bfd4d 100644 --- a/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml @@ -8,7 +8,7 @@ 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 Unless required by + 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the diff --git a/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt-in-profile/pom.xml b/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt-in-profile/pom.xml index 38ad7f7113..004dc49916 100644 --- a/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt-in-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt-in-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt/pom.xml b/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt/pom.xml index de69bb4bdd..f4dc7c85f8 100644 --- a/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-dependency-key/dep-mgmt/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/unique-dependency-key/deps-in-profile/pom.xml b/maven-core/src/test/resources-project-builder/unique-dependency-key/deps-in-profile/pom.xml index 8d4ae56d98..520023ed53 100644 --- a/maven-core/src/test/resources-project-builder/unique-dependency-key/deps-in-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-dependency-key/deps-in-profile/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/unique-dependency-key/deps/pom.xml b/maven-core/src/test/resources-project-builder/unique-dependency-key/deps/pom.xml index a629c9f514..1efb06812c 100644 --- a/maven-core/src/test/resources-project-builder/unique-dependency-key/deps/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-dependency-key/deps/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo-in-profile/pom.xml b/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo-in-profile/pom.xml index eb73c4e23d..78b9f8b70f 100644 --- a/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo-in-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo-in-profile/pom.xml @@ -9,7 +9,7 @@ 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 @@ -39,11 +39,11 @@ under the License. one - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 one - http://repository.codehaus.org/ + https://repository.codehaus.org/ diff --git a/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo/pom.xml b/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo/pom.xml index 76d4f74aff..c4a9eaaecc 100644 --- a/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-repo-id/artifact-repo/pom.xml @@ -9,7 +9,7 @@ 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 @@ -35,11 +35,11 @@ under the License. one - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 one - http://repository.codehaus.org/ + https://repository.codehaus.org/ diff --git a/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo-in-profile/pom.xml b/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo-in-profile/pom.xml index ac1fada558..2d83c0f942 100644 --- a/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo-in-profile/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo-in-profile/pom.xml @@ -9,7 +9,7 @@ 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 @@ -39,11 +39,11 @@ under the License. one - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 one - http://repository.codehaus.org/ + https://repository.codehaus.org/ diff --git a/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml b/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml index 92fd1264d4..5d87815e13 100644 --- a/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml +++ b/maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml @@ -9,7 +9,7 @@ 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 @@ -35,11 +35,11 @@ under the License. one - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 one - http://repository.codehaus.org/ + https://repository.codehaus.org/ diff --git a/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml b/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml index cdc7b75aab..f6470289e0 100644 --- a/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml @@ -9,7 +9,7 @@ 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 @@ -35,7 +35,7 @@ under the License. child-name child-desc - http://child.org/ + https://child.org/ 2008 child-org-name @@ -46,24 +46,24 @@ under the License. - http://scm.org/ + https://scm.org/ - http://issue.org/ + https://issue.org/ - http://ci.org/ + https://ci.org/ maven-core-it child-dist-repo - http://dist.org/ + https://dist.org/ maven-core-it child-site - http://site.org/ + https://site.org/ diff --git a/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml index 88d372c96b..28e0458e4e 100644 --- a/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/url-append/child/pom.xml b/maven-core/src/test/resources-project-builder/url-append/child/pom.xml index 1f377df1ff..000689fa1a 100644 --- a/maven-core/src/test/resources-project-builder/url-append/child/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-append/child/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml b/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml index f8b069f82e..a2ce15d99d 100644 --- a/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml @@ -9,7 +9,7 @@ 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 @@ -37,16 +37,16 @@ under the License. ../child - http://project.url/parent + https://project.url/parent - http://viewvc.project.url/parent - http://scm.project.url/parent + https://viewvc.project.url/parent + https://scm.project.url/parent https://scm.project.url/parent - http://site.project.url/parent + https://site.project.url/parent parent.site diff --git a/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml b/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml index 463772feb2..602322d37f 100644 --- a/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml b/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml index 128e63d12e..8a892a10fe 100644 --- a/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml b/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml index ed4cdf0880..ee7881fa45 100644 --- a/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml @@ -9,7 +9,7 @@ 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 @@ -32,43 +32,43 @@ under the License. Test that inheritance of certain URLs automatically appends the child's artifact id. - http://parent.url + https://parent.url parent-org - http://parent.url/org + https://parent.url/org parent-license - http://parent.url/license.txt + https://parent.url/license.txt repo - http://parent.url/viewvc - http://parent.url/scm + https://parent.url/viewvc + https://parent.url/scm https://parent.url/scm - http://parent.url/issues + https://parent.url/issues - http://parent.url/ci + https://parent.url/ci - http://parent.url/dist + https://parent.url/dist parent.distros - http://parent.url/snaps + https://parent.url/snaps parent.snaps - http://parent.url/site + https://parent.url/site parent.site - http://parent.url/download + https://parent.url/download diff --git a/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml b/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml index c8e9c108d3..356312803b 100644 --- a/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml b/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml index 2dcceb93ae..a75fa88cdc 100644 --- a/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml +++ b/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml @@ -9,7 +9,7 @@ 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 @@ -33,19 +33,19 @@ under the License. - http://maven.apache.org/spacy%20path + https://maven.apache.org/spacy%20path scm:svn:svn+ssh://svn.apache.org/spacy%20path scm:svn:svn+ssh://svn.apache.org/spacy%20path - http://svn.apache.org/viewvc/spacy%20path + https://svn.apache.org/viewvc/spacy%20path none - http://issues.apache.org/spacy%20path + https://issues.apache.org/spacy%20path none - http://ci.apache.org/spacy%20path + https://ci.apache.org/spacy%20path diff --git a/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml b/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml index c5df7aade1..bbb99ca6df 100644 --- a/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml +++ b/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml b/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml index 584712fde5..1da0e2f1c0 100644 --- a/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml +++ b/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml b/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml index 433dd522c8..3d0ec6d138 100644 --- a/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml +++ b/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml @@ -9,7 +9,7 @@ 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 diff --git a/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml b/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml index f5ea684d7f..83894a692a 100644 --- a/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml +++ b/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml @@ -9,7 +9,7 @@ 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