diff --git a/acl/pom.xml b/acl/pom.xml index 39f8ad197c..29acab584f 100644 --- a/acl/pom.xml +++ b/acl/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-acl spring-security-acl - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/aspects/pom.xml b/aspects/pom.xml index c7208d6e65..1368e735ec 100644 --- a/aspects/pom.xml +++ b/aspects/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-aspects spring-security-aspects - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/build.gradle b/build.gradle index 2a5092485d..bfcfa34f1c 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ allprojects { mavenCentral() maven { url "https://repo.spring.io/libs-snapshot" } maven { url "https://repo.spring.io/plugins-release" } - maven { url "http://repo.terracotta.org/maven2/" } + maven { url "https://repo.terracotta.org/maven2/" } } eclipse.project.name = "${project.name}-3.2.x" diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 9dae29df88..ab5aecf709 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -4,11 +4,11 @@ repositories { mavenCentral() maven { name = 'SpringSource Enterprise Release' - url = 'http://repository.springsource.com/maven/bundles/release' + url = 'https://repository.springsource.com/maven/bundles/release' } maven { name = 'SpringSource Enterprise External' - url = 'http://repository.springsource.com/maven/bundles/external' + url = 'https://repository.springsource.com/maven/bundles/external' } } diff --git a/cas/pom.xml b/cas/pom.xml index 2e868c01cb..a86b502b2b 100644 --- a/cas/pom.xml +++ b/cas/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-cas spring-security-cas - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/config/pom.xml b/config/pom.xml index 0511a653b1..faccdc59b0 100644 --- a/config/pom.xml +++ b/config/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-config spring-security-config - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/core/pom.xml b/core/pom.xml index f3d8f4ae6f..fd6f029c3b 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-core spring-security-core - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/crypto/pom.xml b/crypto/pom.xml index f8d4c008a8..8192fe6ba8 100644 --- a/crypto/pom.xml +++ b/crypto/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-crypto spring-security-crypto - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/docs/docs.gradle b/docs/docs.gradle index 4a8cb83e1d..18c357cd89 100644 --- a/docs/docs.gradle +++ b/docs/docs.gradle @@ -61,9 +61,9 @@ task apidocs(type: Javadoc) { apidocs.options.outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET apidocs.options.links = [ - "http://static.springframework.org/spring/docs/3.2.x/javadoc-api", - "http://static.springsource.org/spring-ldap/docs/1.3.x/apidocs/", - "http://download.oracle.com/javase/6/docs/api/" + "https://docs.spring.io/spring/docs/3.2.x/javadoc-api", + "https://docs.spring.io/spring-ldap/docs/1.3.x/apidocs/", + "https://download.oracle.com/javase/6/docs/api/" ] apidocs.options.groups = [ diff --git a/gradle/javaprojects.gradle b/gradle/javaprojects.gradle index 4779c1d30b..646ca3f137 100644 --- a/gradle/javaprojects.gradle +++ b/gradle/javaprojects.gradle @@ -164,9 +164,9 @@ javadoc { header = project.name outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET links = [ - "http://static.springsource.org/spring/docs/3.2.x/javadoc-api/", - "http://static.springsource.org/spring-ldap/docs/1.3.x/apidocs/", - "http://download.oracle.com/javase/6/docs/api/" + "https://docs.spring.io/spring/docs/3.2.x/javadoc-api/", + "https://docs.spring.io/spring-ldap/docs/1.3.x/apidocs/", + "https://download.oracle.com/javase/6/docs/api/" ] groups = [ 'Spring Security Core':[ @@ -190,7 +190,7 @@ javadoc { eclipse.classpath.downloadSources = true -// http://forums.gradle.org/gradle/topics/eclipse_wtp_deploys_testcode_to_server_example_provided +// https://discuss.gradle.org/gradle/topics/eclipse_wtp_deploys_testcode_to_server_example_provided eclipse.classpath { defaultOutputDir = file('bin/main') file.whenMerged { cp -> diff --git a/gradle/maven-deployment.gradle b/gradle/maven-deployment.gradle index e66962a4f0..55d1035a7b 100644 --- a/gradle/maven-deployment.gradle +++ b/gradle/maven-deployment.gradle @@ -43,15 +43,15 @@ def customizePom(pom, gradleProject) { packaging = "war" } description = gradleProject.name - url = 'http://spring.io/spring-security' + url = 'https://spring.io/spring-security' organization { name = 'spring.io' - url = 'http://spring.io/' + url = 'https://spring.io/' } licenses { license { name 'The Apache Software License, Version 2.0' - url 'http://www.apache.org/licenses/LICENSE-2.0.txt' + url 'https://www.apache.org/licenses/LICENSE-2.0.txt' distribution 'repo' } } @@ -89,7 +89,7 @@ def customizePom(pom, gradleProject) { } } - // http://forums.gradle.org/gradle/topics/after_upgrade_gradle_to_2_0_version_the_maven_pom_not_support_build_property + // https://discuss.gradle.org/gradle/topics/after_upgrade_gradle_to_2_0_version_the_maven_pom_not_support_build_property pom.withXml { def plugins = asNode().appendNode('build').appendNode('plugins') plugins diff --git a/itest/context/pom.xml b/itest/context/pom.xml index 475d8731c1..bf33dc95bc 100644 --- a/itest/context/pom.xml +++ b/itest/context/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE itest-context itest-context - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/itest/web/pom.xml b/itest/web/pom.xml index c493e1156a..2d3f11aeda 100644 --- a/itest/web/pom.xml +++ b/itest/web/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE itest-web itest-web - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/ldap/pom.xml b/ldap/pom.xml index f888855c50..d07091ddae 100644 --- a/ldap/pom.xml +++ b/ldap/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-ldap spring-security-ldap - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/openid/pom.xml b/openid/pom.xml index fbed6bb140..af78331226 100644 --- a/openid/pom.xml +++ b/openid/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-openid spring-security-openid - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/remoting/pom.xml b/remoting/pom.xml index cba5edf39b..2c7fffeb75 100644 --- a/remoting/pom.xml +++ b/remoting/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-remoting spring-security-remoting - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/aspectj-jc/pom.xml b/samples/aspectj-jc/pom.xml index f7c5855fb0..bdf4e2343c 100644 --- a/samples/aspectj-jc/pom.xml +++ b/samples/aspectj-jc/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-samples-aspectj-jc spring-security-samples-aspectj-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/aspectj-xml/pom.xml b/samples/aspectj-xml/pom.xml index e6a60101ae..f044d5eeba 100644 --- a/samples/aspectj-xml/pom.xml +++ b/samples/aspectj-xml/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-samples-aspectj-xml spring-security-samples-aspectj-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/cas/sample-xml/pom.xml b/samples/cas/sample-xml/pom.xml index 2f98f38df7..7ea6826d57 100644 --- a/samples/cas/sample-xml/pom.xml +++ b/samples/cas/sample-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-cassample-xml spring-security-samples-cassample-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/cas/server/pom.xml b/samples/cas/server/pom.xml index 46c628272f..633c5987b5 100644 --- a/samples/cas/server/pom.xml +++ b/samples/cas/server/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-casserver spring-security-samples-casserver - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/concurrency-jc/pom.xml b/samples/concurrency-jc/pom.xml index 816d0ae402..8470ccd5b4 100644 --- a/samples/concurrency-jc/pom.xml +++ b/samples/concurrency-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-concurrency-jc spring-security-samples-concurrency-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/contacts-xml/pom.xml b/samples/contacts-xml/pom.xml index af0f830b13..2d72555b91 100644 --- a/samples/contacts-xml/pom.xml +++ b/samples/contacts-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-contacts-xml spring-security-samples-contacts-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/dms-xml/pom.xml b/samples/dms-xml/pom.xml index 6342156315..3cc856e34f 100644 --- a/samples/dms-xml/pom.xml +++ b/samples/dms-xml/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-samples-dms-xml spring-security-samples-dms-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/form-jc/pom.xml b/samples/form-jc/pom.xml index 597e9ff85a..f7df0026aa 100644 --- a/samples/form-jc/pom.xml +++ b/samples/form-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-form-jc spring-security-samples-form-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/gae-xml/gae.gradle b/samples/gae-xml/gae.gradle index e2d80eb3a3..ded81783bc 100644 --- a/samples/gae-xml/gae.gradle +++ b/samples/gae-xml/gae.gradle @@ -13,7 +13,7 @@ repositories { maven { // GAE Jars name = 'GAE' - url = 'http://maven-gae-plugin.googlecode.com/svn/repository' + url = 'https://maven-gae-plugin.googlecode.com/svn/repository' } } diff --git a/samples/gae-xml/pom.xml b/samples/gae-xml/pom.xml index 50e4f44ee8..356b8ab38b 100644 --- a/samples/gae-xml/pom.xml +++ b/samples/gae-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-gae-xml spring-security-samples-gae-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/hellojs-jc/pom.xml b/samples/hellojs-jc/pom.xml index 74c98e4ebb..2503d80fd6 100644 --- a/samples/hellojs-jc/pom.xml +++ b/samples/hellojs-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-hellojs-jc spring-security-samples-hellojs-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/hellomvc-jc/pom.xml b/samples/hellomvc-jc/pom.xml index 75fc45911f..4b0ffd09ee 100644 --- a/samples/hellomvc-jc/pom.xml +++ b/samples/hellomvc-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-hellomvc-jc spring-security-samples-hellomvc-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/helloworld-jc/pom.xml b/samples/helloworld-jc/pom.xml index 9b1ddd8ca3..192a525b20 100644 --- a/samples/helloworld-jc/pom.xml +++ b/samples/helloworld-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-helloworld-jc spring-security-samples-helloworld-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/inmemory-jc/pom.xml b/samples/inmemory-jc/pom.xml index d262e7ccf8..2903d0198c 100644 --- a/samples/inmemory-jc/pom.xml +++ b/samples/inmemory-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-inmemory-jc spring-security-samples-inmemory-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/insecure/pom.xml b/samples/insecure/pom.xml index 7b0e9778aa..f2a06e4151 100644 --- a/samples/insecure/pom.xml +++ b/samples/insecure/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-insecure spring-security-samples-insecure - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/insecuremvc/pom.xml b/samples/insecuremvc/pom.xml index c1515eaa15..a0e0d65f80 100644 --- a/samples/insecuremvc/pom.xml +++ b/samples/insecuremvc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-insecuremvc spring-security-samples-insecuremvc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/jaas-xml/pom.xml b/samples/jaas-xml/pom.xml index 99ebf78a81..078c072e5a 100644 --- a/samples/jaas-xml/pom.xml +++ b/samples/jaas-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-jaas-xml spring-security-samples-jaas-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/jdbc-jc/pom.xml b/samples/jdbc-jc/pom.xml index c977a98166..46e82b5abb 100644 --- a/samples/jdbc-jc/pom.xml +++ b/samples/jdbc-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-jdbc-jc spring-security-samples-jdbc-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/ldap-jc/pom.xml b/samples/ldap-jc/pom.xml index 8846a46e21..03be1e760b 100644 --- a/samples/ldap-jc/pom.xml +++ b/samples/ldap-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-ldap-jc spring-security-samples-ldap-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/ldap-xml/pom.xml b/samples/ldap-xml/pom.xml index 42011fd662..880464174d 100644 --- a/samples/ldap-xml/pom.xml +++ b/samples/ldap-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-ldap-xml spring-security-samples-ldap-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/messages-jc/pom.xml b/samples/messages-jc/pom.xml index b8abe20704..fe0eee8eda 100644 --- a/samples/messages-jc/pom.xml +++ b/samples/messages-jc/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-samples-messages-jc spring-security-samples-messages-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/openid-jc/pom.xml b/samples/openid-jc/pom.xml index 0042d0c5a7..a2aaa819bd 100644 --- a/samples/openid-jc/pom.xml +++ b/samples/openid-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-openid-jc spring-security-samples-openid-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/openid-xml/pom.xml b/samples/openid-xml/pom.xml index 0f995d8e01..ed0d6bfbcf 100644 --- a/samples/openid-xml/pom.xml +++ b/samples/openid-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-openid-xml spring-security-samples-openid-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/preauth-jc/pom.xml b/samples/preauth-jc/pom.xml index 57e7d38a6d..d077d59e0a 100644 --- a/samples/preauth-jc/pom.xml +++ b/samples/preauth-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-preauth-jc spring-security-samples-preauth-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/preauth-xml/pom.xml b/samples/preauth-xml/pom.xml index 3e93c576dd..f906f3cbe5 100644 --- a/samples/preauth-xml/pom.xml +++ b/samples/preauth-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-preauth-xml spring-security-samples-preauth-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/rememberme-jc/pom.xml b/samples/rememberme-jc/pom.xml index dc1b4ca2b5..abbfb001f6 100644 --- a/samples/rememberme-jc/pom.xml +++ b/samples/rememberme-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-rememberme-jc spring-security-samples-rememberme-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/servletapi-xml/pom.xml b/samples/servletapi-xml/pom.xml index f6b0b6d473..02941281b2 100644 --- a/samples/servletapi-xml/pom.xml +++ b/samples/servletapi-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-servletapi-xml spring-security-samples-servletapi-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/tutorial-xml/pom.xml b/samples/tutorial-xml/pom.xml index 0a3dedda3f..1b5a983c14 100644 --- a/samples/tutorial-xml/pom.xml +++ b/samples/tutorial-xml/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-tutorial-xml spring-security-samples-tutorial-xml - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/samples/x509-jc/pom.xml b/samples/x509-jc/pom.xml index 2b6b7cfc11..a666dd9a02 100644 --- a/samples/x509-jc/pom.xml +++ b/samples/x509-jc/pom.xml @@ -7,15 +7,15 @@ war spring-security-samples-x509-jc spring-security-samples-x509-jc - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/taglibs/pom.xml b/taglibs/pom.xml index a664a8644c..e82fed6aa1 100644 --- a/taglibs/pom.xml +++ b/taglibs/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-taglibs spring-security-taglibs - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/web/pom.xml b/web/pom.xml index df1e3973fb..79433be638 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -6,15 +6,15 @@ 3.2.10.RELEASE spring-security-web spring-security-web - http://spring.io/spring-security + https://spring.io/spring-security spring.io - http://spring.io/ + https://spring.io/ The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt + https://www.apache.org/licenses/LICENSE-2.0.txt repo