30 lines
1.1 KiB
Groovy
30 lines
1.1 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.configuration-properties"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Security OAuth2 Client"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("org.springframework.security:spring-security-oauth2-client")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-security"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-reactor"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-webmvc"))
|
|
testImplementation("com.fasterxml.jackson.core:jackson-databind")
|
|
testImplementation("com.squareup.okhttp3:mockwebserver")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
testRuntimeOnly("org.springframework:spring-webflux")
|
|
}
|