2021-11-08 14:35:57 -05:00
|
|
|
plugins {
|
2023-01-26 21:58:23 -05:00
|
|
|
id 'org.antora' version '1.0.0'
|
2023-01-17 18:05:55 -05:00
|
|
|
id 'io.spring.antora.generate-antora-yml' version '0.0.1'
|
2021-11-08 14:35:57 -05:00
|
|
|
}
|
|
|
|
|
2021-09-02 15:38:19 -04:00
|
|
|
apply plugin: 'io.spring.convention.docs'
|
2021-08-20 18:08:39 -04:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
2021-11-08 14:35:57 -05:00
|
|
|
antora {
|
2023-01-11 03:02:10 -05:00
|
|
|
playbook = 'cached-antora-playbook.yml'
|
|
|
|
playbookProvider {
|
|
|
|
repository = 'spring-projects/spring-security'
|
|
|
|
branch = 'docs-build'
|
|
|
|
path = 'lib/antora/templates/per-branch-antora-playbook.yml'
|
|
|
|
checkLocalBranch = true
|
|
|
|
}
|
2023-01-17 12:36:17 -05:00
|
|
|
options = [clean: true, fetch: !project.gradle.startParameter.offline, stacktrace: true]
|
2021-11-08 14:35:57 -05:00
|
|
|
}
|
|
|
|
|
2023-01-17 18:05:55 -05:00
|
|
|
tasks.named("generateAntoraYml") {
|
|
|
|
asciidocAttributes = project.provider( { generateAttributes() } )
|
|
|
|
asciidocAttributes.putAll(providers.provider( { resolvedVersions(project.configurations.testRuntimeClasspath) }))
|
2021-08-20 18:08:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-09-26 16:54:14 -04:00
|
|
|
testImplementation platform(project(':spring-security-dependencies'))
|
|
|
|
testImplementation 'com.unboundid:unboundid-ldapsdk'
|
|
|
|
testImplementation 'org.apache.directory.server:apacheds-core'
|
|
|
|
testImplementation 'org.springframework:spring-core'
|
2021-08-20 18:08:39 -04:00
|
|
|
}
|
|
|
|
|
2023-01-17 18:05:55 -05:00
|
|
|
def generateAttributes() {
|
|
|
|
def docsTag = snapshotBuild ? 'current' : project.version
|
|
|
|
def ghTag = snapshotBuild ? 'main' : project.version
|
|
|
|
def ghUrl = "https://github.com/spring-projects/spring-security/tree/$ghTag"
|
|
|
|
def ghOldSamplesUrl = 'https://github.com/spring-projects/spring-security/tree/5.4.x/samples'
|
|
|
|
def ghSamplesUrl = "https://github.com/spring-projects/spring-security-samples/tree/$samplesBranch"
|
|
|
|
def securityDocsUrl = "https://docs.spring.io/spring-security/site/docs/$docsTag"
|
|
|
|
def securityApiUrl = "$securityDocsUrl/api/"
|
|
|
|
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/"
|
2023-04-18 13:28:44 -04:00
|
|
|
def springBootReferenceUrl = "https://docs.spring.io/spring-boot/docs/$springBootVersion/reference/html/"
|
2023-05-10 17:26:41 -04:00
|
|
|
def springBootApiUrl = "https://docs.spring.io/spring-boot/docs/$springBootVersion/api/"
|
2023-04-18 13:28:44 -04:00
|
|
|
|
2023-01-17 18:05:55 -05:00
|
|
|
return ['gh-old-samples-url': ghOldSamplesUrl.toString(),
|
|
|
|
'gh-samples-url': ghSamplesUrl.toString(),
|
|
|
|
'gh-url': ghUrl.toString(),
|
|
|
|
'security-api-url': securityApiUrl.toString(),
|
|
|
|
'security-reference-url': securityReferenceUrl.toString(),
|
|
|
|
'spring-framework-api-url': springFrameworkApiUrl.toString(),
|
|
|
|
'spring-framework-reference-url': springFrameworkReferenceUrl.toString(),
|
2023-05-10 17:26:41 -04:00
|
|
|
'spring-boot-api-url': springBootApiUrl.toString(),
|
2023-04-18 13:28:44 -04:00
|
|
|
'spring-boot-reference-url': springBootReferenceUrl.toString(),
|
|
|
|
'spring-security-version': project.version]
|
2023-01-17 18:05:55 -05:00
|
|
|
+ resolvedVersions(project.configurations.testRuntimeClasspath)
|
|
|
|
}
|
|
|
|
|
2021-08-20 18:08:39 -04:00
|
|
|
def resolvedVersions(Configuration configuration) {
|
2023-01-17 18:05:55 -05:00
|
|
|
return configuration.resolvedConfiguration
|
2021-08-20 18:08:39 -04:00
|
|
|
.resolvedArtifacts
|
2022-09-26 16:54:14 -04:00
|
|
|
.collectEntries { [(it.name + '-version'): it.moduleVersion.id.version] }
|
2021-08-20 18:08:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-09-26 16:54:14 -04:00
|
|
|
maven { url 'https://repo.spring.io/release' }
|
|
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
2021-08-20 18:08:39 -04:00
|
|
|
}
|