2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'groovy'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenRepo name:'localRepo', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
|
|
|
|
mavenCentral()
|
2010-07-06 18:52:11 -04:00
|
|
|
mavenRepo name: 'GAE', urls:'http://maven-gae-plugin.googlecode.com/svn/repository'
|
2010-03-03 10:40:57 -05:00
|
|
|
mavenRepo name:'Shibboleth Repo', urls:'http://shibboleth.internet2.edu/downloads/maven2'
|
|
|
|
}
|
|
|
|
|
2010-07-06 18:52:11 -04:00
|
|
|
// Docbook Plugin
|
2010-03-03 10:40:57 -05:00
|
|
|
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',
|
2010-08-22 17:31:01 -04:00
|
|
|
'saxon:saxon:6.5.3',
|
2010-03-03 10:40:57 -05:00
|
|
|
fopDeps
|
|
|
|
|
|
|
|
runtime 'net.sf.xslthl:xslthl:2.0.1',
|
2010-07-03 08:10:48 -04:00
|
|
|
'net.sf.docbook:docbook-xsl:1.75.2:ns-resources@zip'
|
2010-03-03 10:40:57 -05:00
|
|
|
}
|
|
|
|
|
2010-07-06 18:52:11 -04:00
|
|
|
// GAE
|
|
|
|
dependencies {
|
|
|
|
compile 'com.google.appengine:appengine-tools-api:1.3.5'
|
|
|
|
}
|
|
|
|
|
2010-03-03 10:40:57 -05:00
|
|
|
task ide(type: Copy) {
|
|
|
|
from configurations.runtime
|
|
|
|
into 'ide'
|
|
|
|
}
|