21 lines
761 B
Groovy
21 lines
761 B
Groovy
apply plugin: 'io.spring.convention.spring-test'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-ldap-dependencies"))
|
|
implementation project(":spring-ldap-test")
|
|
implementation project(":spring-ldap-odm")
|
|
implementation project(":spring-ldap-core")
|
|
|
|
provided "org.springframework:spring-jdbc"
|
|
provided "org.springframework:spring-orm"
|
|
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation "org.junit.vintage:junit-vintage-engine"
|
|
testImplementation "org.springframework:spring-test"
|
|
testImplementation "junit:junit"
|
|
testImplementation "org.slf4j:slf4j-log4j12"
|
|
testImplementation "org.assertj:assertj-core"
|
|
|
|
}
|
|
|
|
test.enabled = false // TODO this should be enabled depending on build parameter |