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.
37 lines
654 B
37 lines
654 B
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' |
|
} |
|
} |
|
|
|
dependencies { |
|
compile gradleApi() |
|
} |
|
|
|
// GAE |
|
dependencies { |
|
compile 'com.google.appengine:appengine-tools-sdk:1.4.2' |
|
} |
|
|
|
dependencies{ |
|
compile "emma:emma:2.0.5312" |
|
} |
|
|
|
// Trang |
|
dependencies { |
|
compile 'com.thaiopensource:trang:20091111', |
|
'net.sourceforge.saxon:saxon:9.1.0.8' |
|
} |
|
|
|
task ide(type: Copy) { |
|
from configurations.runtime |
|
into 'ide' |
|
}
|
|
|