38 lines
1.5 KiB
Groovy
38 lines
1.5 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.docker-test"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot LDAP"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("org.springframework.ldap:spring-ldap-core")
|
|
|
|
compileOnly("com.fasterxml.jackson.core:jackson-annotations")
|
|
|
|
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-docker-compose"))
|
|
optional(project(":spring-boot-project:spring-boot-testcontainers"))
|
|
optional("com.unboundid:unboundid-ldapsdk")
|
|
optional("org.testcontainers:ldap")
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-docker-compose")))
|
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
testCompileOnly("com.fasterxml.jackson.core:jackson-annotations")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
testRuntimeOnly("org.apache.commons:commons-pool2")
|
|
}
|