72 lines
2.0 KiB
Groovy
72 lines
2.0 KiB
Groovy
plugins {
|
|
id "io.spring.convention.docs"
|
|
id "io.spring.antora.generate-antora-yml" version "0.0.1"
|
|
id "org.antora" version "1.0.0"
|
|
id "java"
|
|
}
|
|
|
|
group = project.rootProject.group
|
|
version = project.rootProject.version
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
antora {
|
|
playbook = "cached-antora-playbook.yml"
|
|
playbookProvider {
|
|
repository = "spring-projects/spring-authorization-server"
|
|
branch = "docs-build"
|
|
path = "lib/antora/templates/per-branch-antora-playbook.yml"
|
|
checkLocalBranch = true
|
|
}
|
|
options = [clean: true, fetch: !project.gradle.startParameter.offline, stacktrace: true]
|
|
}
|
|
|
|
tasks.named("generateAntoraYml") {
|
|
asciidocAttributes = project.provider( { generateAttributes() } )
|
|
}
|
|
|
|
|
|
def generateAttributes() {
|
|
return [
|
|
"spring-authorization-server-version": project.version
|
|
]
|
|
}
|
|
|
|
docsZip {
|
|
from (api) {
|
|
into "api"
|
|
}
|
|
from(asciidoctor) {
|
|
into "reference/html"
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform("org.springframework.boot:spring-boot-dependencies:3.2.2")) {
|
|
exclude group: "org.springframework.security", module: "spring-security-oauth2-authorization-server"
|
|
}
|
|
implementation platform("org.springframework.security:spring-security-bom:6.3.0-M3")
|
|
implementation "org.springframework.boot:spring-boot-starter-web"
|
|
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
|
|
implementation "org.springframework.boot:spring-boot-starter-security"
|
|
implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
|
|
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server"
|
|
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
|
implementation "org.springframework:spring-webflux"
|
|
implementation project(":spring-security-oauth2-authorization-server")
|
|
runtimeOnly "com.h2database:h2"
|
|
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
|
testImplementation "org.springframework.security:spring-security-test"
|
|
}
|
|
|
|
tasks.named("test") {
|
|
useJUnitPlatform()
|
|
}
|