21 lines
547 B
Groovy
21 lines
547 B
Groovy
plugins {
|
|
id "org.gretty"
|
|
id 'war'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':spring-ldap-test'),
|
|
'javax.servlet:jstl:1.2',
|
|
"org.springframework:spring-context",
|
|
"org.springframework:spring-webmvc",
|
|
"org.springframework.data:spring-data-commons"
|
|
|
|
compileOnly "javax.servlet:servlet-api:2.5"
|
|
|
|
runtimeOnly 'ch.qos.logback:logback-classic:1.0.13'
|
|
|
|
testImplementation "org.springframework:spring-test",
|
|
"junit:junit",
|
|
"org.assertj:assertj-core"
|
|
}
|