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.
39 lines
1.3 KiB
39 lines
1.3 KiB
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', |
|
'saxon:saxon:6.5.3', |
|
'org.apache.xerces:xercesImpl:2.9.1', |
|
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.5' |
|
} |
|
|
|
task ide(type: Copy) { |
|
from configurations.runtime |
|
into 'ide' |
|
}
|
|
|