Files
spring-ldap/samples/plain/build.gradle
Josh Cummings 482e7fd8be Update servlet-api to 4.0.1
Closes gh-648
2022-05-04 20:14:22 -06:00

31 lines
882 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:javax.servlet-api:4.0.1"
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"
}
compileTestJava {
targetCompatibility = JavaVersion.VERSION_11
}