mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 22:46:15 +00:00
Also updated GAE version and build script. Uploading to GAE now works when run from the gradle build file using the command 'gradle gaeDeploy'.
40 lines
1.3 KiB
Groovy
40 lines
1.3 KiB
Groovy
apply plugin: 'groovy'
|
|
|
|
repositories {
|
|
mavenRepo name:'localRepo', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
|
|
mavenCentral()
|
|
mavenRepo name: 'GAE', urls:'http://maven-gae-plugin.googlecode.com/svn/repository'
|
|
mavenRepo name:'Shibboleth Repo', urls:'http://shibboleth.internet2.edu/downloads/maven2'
|
|
}
|
|
|
|
// Docbook Plugin
|
|
dependencies {
|
|
def fopDeps = [ 'org.apache.xmlgraphics:fop:0.95-1@jar',
|
|
'org.apache.xmlgraphics:xmlgraphics-commons:1.3',
|
|
'org.apache.xmlgraphics:batik-bridge:1.7@jar',
|
|
'org.apache.xmlgraphics:batik-util:1.7@jar',
|
|
'org.apache.xmlgraphics:batik-css:1.7@jar',
|
|
'org.apache.xmlgraphics:batik-dom:1.7',
|
|
'org.apache.xmlgraphics:batik-svg-dom:1.7@jar',
|
|
'org.apache.avalon.framework:avalon-framework-api:4.3.1']
|
|
groovy localGroovy()
|
|
compile gradleApi(),
|
|
'org.apache.xerces:resolver:2.9.1',
|
|
'org.apache.xerces:xercesImpl:2.9.1',
|
|
'saxon:saxon:6.5.3',
|
|
fopDeps
|
|
|
|
runtime 'net.sf.xslthl:xslthl:2.0.1',
|
|
'net.sf.docbook:docbook-xsl:1.75.2:ns-resources@zip'
|
|
}
|
|
|
|
// GAE
|
|
dependencies {
|
|
compile 'com.google.appengine:appengine-tools-api:1.3.7'
|
|
}
|
|
|
|
task ide(type: Copy) {
|
|
from configurations.runtime
|
|
into 'ide'
|
|
}
|