mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 09:12:14 +00:00
Minor sample build changes. JSTL dependency update.
This commit is contained in:
parent
e5a302b5c4
commit
a681dee0e1
@ -6,7 +6,7 @@ springLdapVersion = '1.3.0.RELEASE'
|
|||||||
ehcacheVersion = '1.6.2'
|
ehcacheVersion = '1.6.2'
|
||||||
aspectjVersion = '1.6.8'
|
aspectjVersion = '1.6.8'
|
||||||
apacheDsVersion = '1.5.5'
|
apacheDsVersion = '1.5.5'
|
||||||
jstlVersion = '1.1.2'
|
jstlVersion = '1.2'
|
||||||
jettyVersion = '6.1.22'
|
jettyVersion = '6.1.22'
|
||||||
hsqlVersion = '1.8.0.10'
|
hsqlVersion = '1.8.0.10'
|
||||||
slf4jVersion = '1.6.1'
|
slf4jVersion = '1.6.1'
|
||||||
|
@ -24,4 +24,8 @@ dependencies {
|
|||||||
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
||||||
"hsqldb:hsqldb:$hsqlVersion",
|
"hsqldb:hsqldb:$hsqlVersion",
|
||||||
'log4j:log4j:1.2.15@jar'
|
'log4j:log4j:1.2.15@jar'
|
||||||
|
}
|
||||||
|
|
||||||
|
jettyRun {
|
||||||
|
contextPath = "/tutorial"
|
||||||
}
|
}
|
@ -24,7 +24,7 @@ cleanup() {
|
|||||||
|
|
||||||
start_jetty()
|
start_jetty()
|
||||||
{
|
{
|
||||||
mvn -o jetty:run > runall.log &
|
gradle -d jettyRun > runall.log &
|
||||||
until (grep "Started Jetty Server" runall.log)
|
until (grep "Started Jetty Server" runall.log)
|
||||||
do
|
do
|
||||||
echo "- Waiting for server to start... -"
|
echo "- Waiting for server to start... -"
|
||||||
|
@ -16,4 +16,8 @@ dependencies {
|
|||||||
project(':spring-security-config'),
|
project(':spring-security-config'),
|
||||||
project(':spring-security-taglibs'),
|
project(':spring-security-taglibs'),
|
||||||
'log4j:log4j:1.2.15@jar'
|
'log4j:log4j:1.2.15@jar'
|
||||||
|
}
|
||||||
|
|
||||||
|
jettyRun {
|
||||||
|
contextPath = "/tutorial"
|
||||||
}
|
}
|
@ -11,5 +11,5 @@ dependencies {
|
|||||||
|
|
||||||
provided 'javax.servlet:jsp-api:2.0', 'javax.servlet:servlet-api:2.5'
|
provided 'javax.servlet:jsp-api:2.0', 'javax.servlet:servlet-api:2.5'
|
||||||
|
|
||||||
testRuntime "taglibs:standard:$jstlVersion"
|
testRuntime "javax.servlet:jstl:$jstlVersion"
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user