1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Modify order of saxon and xerces deps in dependency list to prevent Aelfred parser from being used in build.

This commit is contained in:
Luke Taylor
2010-08-22 22:31:01 +01:00
parent b9dfc69d62
commit 07d8275ee6
2 changed files with 3 additions and 6 deletions
+2 -5
View File
@@ -3,14 +3,12 @@
apply plugin: 'war'
apply plugin: 'jetty'
/*
configurations {
casServer
}
*/
dependencies {
// casServer "org.jasig.cas:cas-server-webapp:3.4.2.1@war"
casServer "org.jasig.cas:cas-server-webapp:3.4.2.1@war"
runtime project(':spring-security-web'),
project(':spring-security-cas'),
@@ -35,7 +33,7 @@ jettyRun {
connectors = [httpConnector, httpsConnector]
}
/*
task casServer (type: org.gradle.api.plugins.jetty.JettyRunWar) {
contextPath = "/cas"
connectors = [new org.mortbay.jetty.security.SslSocketConnector()]
@@ -55,4 +53,3 @@ task cas (dependsOn: jettyRun) {
jettyRun.dependsOn(casServer)
casServer.daemon = true
}
*/