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.
55 lines
1.6 KiB
55 lines
1.6 KiB
apply plugin: 'groovy' |
|
|
|
repositories { |
|
mavenCentral() |
|
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' |
|
} |
|
} |
|
|
|
// 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(), |
|
'xml-resolver:xml-resolver:1.2', |
|
'xerces:xercesImpl:2.9.1', |
|
'saxon:saxon:6.5.3', |
|
'net.java.dev.jets3t:jets3t:0.6.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-sdk:1.4.2' |
|
} |
|
|
|
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' |
|
} |
|
|
|
task ide(type: Copy) { |
|
from configurations.runtime |
|
into 'ide' |
|
}
|
|
|