Browse Source

Add Spring Boot Reference Url

Issue gh-13062
pull/13077/head
Josh Cummings 3 years ago
parent
commit
830f79a8c5
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
  1. 6
      docs/spring-security-docs.gradle

6
docs/spring-security-docs.gradle

@ -40,7 +40,8 @@ def generateAttributes() { @@ -40,7 +40,8 @@ def generateAttributes() {
def securityReferenceUrl = "$securityDocsUrl/reference/html5/"
def springFrameworkApiUrl = "https://docs.spring.io/spring-framework/docs/$springFrameworkVersion/javadoc-api/"
def springFrameworkReferenceUrl = "https://docs.spring.io/spring-framework/docs/$springFrameworkVersion/reference/html/"
def springBootReferenceUrl = "https://docs.spring.io/spring-boot/docs/$springBootVersion/reference/html/"
return ['gh-old-samples-url': ghOldSamplesUrl.toString(),
'gh-samples-url': ghSamplesUrl.toString(),
'gh-url': ghUrl.toString(),
@ -48,7 +49,8 @@ def generateAttributes() { @@ -48,7 +49,8 @@ def generateAttributes() {
'security-reference-url': securityReferenceUrl.toString(),
'spring-framework-api-url': springFrameworkApiUrl.toString(),
'spring-framework-reference-url': springFrameworkReferenceUrl.toString(),
'spring-security-version': project.version]
'spring-boot-reference-url': springBootReferenceUrl.toString(),
'spring-security-version': project.version]
+ resolvedVersions(project.configurations.testRuntimeClasspath)
}

Loading…
Cancel
Save