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.
21 lines
664 B
21 lines
664 B
// OpenID sample build file |
|
|
|
apply plugin: 'war' |
|
apply plugin: 'jetty' |
|
|
|
dependencies { |
|
compile project(':spring-security-core'), |
|
project(':spring-security-openid') |
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion" |
|
|
|
runtime project(':spring-security-config'), |
|
project(':spring-security-taglibs'), |
|
// 'xerces:xercesImpl:2.9.1', |
|
// 'net.sourceforge.nekohtml:nekohtml:1.9.7', |
|
"javax.servlet:jstl:$jstlVersion", |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"ch.qos.logback:logback-classic:$logbackVersion" |
|
} |
|
|
|
[jettyRun, jettyRunWar]*.contextPath = "/openid"
|
|
|