Explicitly reference the logback.xml file to prevent gretty from configuring the defaults using groovy. Issue gh-10642
19 lines
465 B
Groovy
19 lines
465 B
Groovy
apply plugin: 'io.spring.convention.spring-sample-war'
|
|
|
|
dependencies {
|
|
compile project(':spring-security-core')
|
|
compile project(':spring-security-openid')
|
|
compile 'org.springframework:spring-webmvc'
|
|
|
|
providedCompile 'javax.servlet:javax.servlet-api'
|
|
|
|
runtime project(':spring-security-config')
|
|
runtime project(':spring-security-taglibs')
|
|
runtime jstlDependencies
|
|
runtime slf4jDependencies
|
|
}
|
|
|
|
gretty {
|
|
logbackConfigFile = "src/main/resources/logback.xml"
|
|
}
|