2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'groovy'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2012-06-29 13:59:22 -04:00
|
|
|
maven {
|
|
|
|
name = 'SpringSource Enterprise Release'
|
|
|
|
url = 'http://repository.springsource.com/maven/bundles/release'
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = 'SpringSource Enterprise External'
|
|
|
|
url = 'http://repository.springsource.com/maven/bundles/external'
|
|
|
|
}
|
2010-03-03 10:40:57 -05:00
|
|
|
}
|
|
|
|
|
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(),
|
2011-02-28 10:42:54 -05:00
|
|
|
'xml-resolver:xml-resolver:1.2',
|
|
|
|
'xerces:xercesImpl:2.9.1',
|
2010-08-22 17:31:01 -04:00
|
|
|
'saxon:saxon:6.5.3',
|
2011-04-21 06:57:18 -04:00
|
|
|
'net.java.dev.jets3t:jets3t:0.6.1',
|
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 {
|
2011-02-28 10:42:54 -05:00
|
|
|
compile 'com.google.appengine:appengine-tools-sdk:1.4.2'
|
2010-07-06 18:52:11 -04:00
|
|
|
}
|
|
|
|
|
2011-02-16 10:57:22 -05:00
|
|
|
dependencies{
|
|
|
|
compile "emma:emma:2.0.5312"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bundlor
|
|
|
|
dependencies {
|
|
|
|
compile 'com.springsource.bundlor:com.springsource.bundlor:1.0.0.RELEASE',
|
|
|
|
'com.springsource.bundlor:com.springsource.bundlor.blint:1.0.0.RELEASE'
|
|
|
|
}
|
|
|
|
|
2013-01-03 19:27:15 -05:00
|
|
|
// Trang
|
|
|
|
dependencies {
|
|
|
|
compile 'com.thaiopensource:trang:20091111',
|
|
|
|
'net.sourceforge.saxon:saxon:9.1.0.8'
|
|
|
|
}
|
|
|
|
|
2010-03-03 10:40:57 -05:00
|
|
|
task ide(type: Copy) {
|
|
|
|
from configurations.runtime
|
|
|
|
into 'ide'
|
|
|
|
}
|