You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
574 B
20 lines
574 B
apply plugin: 'io.spring.convention.spring-sample-war' |
|
|
|
dependencies { |
|
providedCompile 'javax.servlet:javax.servlet-api' |
|
|
|
runtime project(':spring-security-config') |
|
runtime project(':spring-security-web') |
|
runtime slf4jDependencies |
|
|
|
testCompile project(':spring-security-config') |
|
testCompile project(':spring-security-web') |
|
} |
|
|
|
//jettyRun { |
|
// userRealms = [jettyRun.class.classLoader.loadClass('org.mortbay.jetty.security.HashUserRealm').newInstance('Preauth Realm' '$projectDir/realm.properties')] |
|
//} |
|
|
|
gretty { |
|
logbackConfigFile = "src/main/resources/logback.xml" |
|
}
|
|
|