26 lines
957 B
Groovy
26 lines
957 B
Groovy
apply plugin: 'io.spring.convention.spring-test'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-ldap-dependencies"))
|
|
implementation project(":spring-ldap-core")
|
|
implementation project(":spring-ldap-test")
|
|
implementation "commons-lang:commons-lang"
|
|
implementation "commons-logging:commons-logging"
|
|
implementation "commons-codec:commons-codec"
|
|
|
|
provided "org.springframework:spring-jdbc"
|
|
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation "org.junit.vintage:junit-vintage-engine"
|
|
|
|
testImplementation "org.springframework:spring-aop"
|
|
testImplementation "org.springframework:spring-test"
|
|
testImplementation "gsbase:gsbase"
|
|
testImplementation "junit:junit"
|
|
testImplementation "com.sun:ldapbp:1.0"
|
|
testImplementation "org.slf4j:slf4j-log4j12"
|
|
testImplementation "org.assertj:assertj-core"
|
|
|
|
}
|
|
|
|
test.enabled = false // TODO this should be enabled depending on build parameter |