27 lines
804 B
Groovy
27 lines
804 B
Groovy
plugins {
|
|
id 'io.spring.convention.spring-module'
|
|
id "org.gretty"
|
|
id 'war'
|
|
}
|
|
|
|
dependencies {
|
|
management platform(project(":spring-ldap-dependencies"))
|
|
|
|
implementation project(':spring-ldap-test'),
|
|
'javax.servlet:jstl:1.2',
|
|
"org.springframework:spring-context",
|
|
"org.springframework:spring-webmvc",
|
|
"commons-lang:commons-lang"
|
|
|
|
compileOnly "javax.servlet:servlet-api:2.5"
|
|
|
|
runtimeOnly 'ch.qos.logback:logback-classic'
|
|
|
|
testImplementation "com.unboundid:unboundid-ldapsdk"
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation "org.junit.vintage:junit-vintage-engine"
|
|
testImplementation "org.springframework:spring-test",
|
|
"junit:junit",
|
|
"org.assertj:assertj-core"
|
|
}
|