Files
spring-ldap/samples/plain/build.gradle
Josh Cummings ba74d7e6d8 Update logback-classic to 1.2.11
Closes gh-643
2022-05-05 10:57:44 -06:00

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"
}