2010-03-29 06:54:41 +08:00
|
|
|
apply plugin: 'groovy'
|
2010-03-03 23:40:57 +08:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2012-06-30 01:59:22 +08: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 23:40:57 +08:00
|
|
|
}
|
|
|
|
|
2010-07-07 06:52:11 +08:00
|
|
|
// GAE
|
|
|
|
dependencies {
|
2011-02-28 23:42:54 +08:00
|
|
|
compile 'com.google.appengine:appengine-tools-sdk:1.4.2'
|
2010-07-07 06:52:11 +08:00
|
|
|
}
|
|
|
|
|
2011-02-16 23:57:22 +08:00
|
|
|
dependencies{
|
|
|
|
compile "emma:emma:2.0.5312"
|
|
|
|
}
|
|
|
|
|
2013-01-04 08:27:15 +08:00
|
|
|
// Trang
|
|
|
|
dependencies {
|
|
|
|
compile 'com.thaiopensource:trang:20091111',
|
|
|
|
'net.sourceforge.saxon:saxon:9.1.0.8'
|
|
|
|
}
|
|
|
|
|
2010-03-03 23:40:57 +08:00
|
|
|
task ide(type: Copy) {
|
|
|
|
from configurations.runtime
|
|
|
|
into 'ide'
|
|
|
|
}
|