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.
17 lines
455 B
17 lines
455 B
// Preauth sample build file |
|
|
|
apply plugin: 'war' |
|
apply plugin: 'jetty' |
|
|
|
dependencies { |
|
|
|
runtime project(':spring-security-web'), |
|
project(':spring-security-config'), |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"ch.qos.logback:logback-classic:$logbackVersion" |
|
} |
|
|
|
jettyRun { |
|
contextPath = "/preauth" |
|
userRealms = [new org.mortbay.jetty.security.HashUserRealm('Preauth Realm', "$projectDir/realm.properties")] |
|
}
|
|
|