2010-03-28 23:54:41 +01:00
|
|
|
apply plugin: 'groovy'
|
2010-03-03 16:40:57 +01:00
|
|
|
|
|
|
|
repositories {
|
2011-02-28 15:42:54 +00:00
|
|
|
mavenLocal()
|
2010-03-03 16:40:57 +01:00
|
|
|
mavenCentral()
|
2011-02-28 15:42:54 +00:00
|
|
|
mavenRepo name: 'SpringSource Enterprise Release', urls: 'http://repository.springsource.com/maven/bundles/release'
|
2011-03-10 19:36:10 +00:00
|
|
|
mavenRepo name: 'SpringSource Enterprise External', urls: 'http://repository.springsource.com/maven/bundles/external'
|
2010-03-03 16:40:57 +01:00
|
|
|
}
|
|
|
|
|
2010-07-06 23:52:11 +01:00
|
|
|
// Docbook Plugin
|
2010-03-03 16:40:57 +01: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 15:42:54 +00:00
|
|
|
'xml-resolver:xml-resolver:1.2',
|
|
|
|
'xerces:xercesImpl:2.9.1',
|
2010-08-22 22:31:01 +01:00
|
|
|
'saxon:saxon:6.5.3',
|
2011-04-21 11:57:18 +01:00
|
|
|
'net.java.dev.jets3t:jets3t:0.6.1',
|
2010-03-03 16:40:57 +01:00
|
|
|
fopDeps
|
|
|
|
|
|
|
|
runtime 'net.sf.xslthl:xslthl:2.0.1',
|
2010-07-03 13:10:48 +01:00
|
|
|
'net.sf.docbook:docbook-xsl:1.75.2:ns-resources@zip'
|
2010-03-03 16:40:57 +01:00
|
|
|
}
|
|
|
|
|
2010-07-06 23:52:11 +01:00
|
|
|
// GAE
|
|
|
|
dependencies {
|
2011-02-28 15:42:54 +00:00
|
|
|
compile 'com.google.appengine:appengine-tools-sdk:1.4.2'
|
2010-07-06 23:52:11 +01:00
|
|
|
}
|
|
|
|
|
2011-02-16 15:57:22 +00: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'
|
|
|
|
}
|
|
|
|
|
2010-03-03 16:40:57 +01:00
|
|
|
task ide(type: Copy) {
|
|
|
|
from configurations.runtime
|
|
|
|
into 'ide'
|
|
|
|
}
|
2011-02-16 15:57:22 +00:00
|
|
|
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
|
|
|
ideaModule {
|
|
|
|
excludeDirs += file('.gradle')
|
|
|
|
}
|