Spring Operator
2019-03-05 21:38:45 -06:00
parent 410a9f5c77
commit 73bec37099
2 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
buildscript {
repositories {
maven { url 'http://repo.springsource.org/plugins-release' }
maven { url 'https://repo.springsource.org/plugins-release' }
}
dependencies {
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
@@ -40,7 +40,7 @@ configure(allprojects) {
repositories {
mavenCentral()
maven { url 'http://repo.spring.io/libs-release' }
maven { url 'https://repo.spring.io/libs-release' }
}
// servlet-api (2.5) and tomcat-servlet-api (3.0) classpath entries should not be
@@ -290,7 +290,7 @@ configure(rootProject) {
options.header = rootProject.description
options.splitIndex = true
options.links(
'http://docs.jboss.org/jbossas/javadoc/4.0.5/connector'
'https://docs.jboss.org/jbossas/javadoc/4.0.5/connector'
)
source subprojects.collect { project ->
project.sourceSets.main.allJava

View File

@@ -31,15 +31,15 @@ def customizePom(pom, gradleProject) {
generatedPom.project {
name = gradleProject.description
description = gradleProject.description
url = 'http://projects.spring.io/spring-security-kerberos'
url = 'https://projects.spring.io/spring-security-kerberos'
organization {
name = 'SpringSource'
url = 'http://projects.spring.io/spring-security-kerberos/'
url = 'https://projects.spring.io/spring-security-kerberos/'
}
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'
}
}