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.
22 lines
586 B
22 lines
586 B
// OpenID sample build file |
|
|
|
apply plugin: 'war' |
|
apply plugin: 'jetty' |
|
|
|
dependencies { |
|
compile project(':spring-security-core'), |
|
project(':spring-security-openid') |
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5@jar' |
|
|
|
runtime project(':spring-security-web'), |
|
project(':spring-security-config'), |
|
project(':spring-security-taglibs'), |
|
"javax.servlet:jstl:$jstlVersion", |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"ch.qos.logback:logback-classic:$logbackVersion" |
|
} |
|
|
|
jettyRun { |
|
contextPath = "/openid" |
|
}
|
|
|