2019-08-23 07:47:11 +08:00
|
|
|
apply plugin: "java-gradle-plugin"
|
2010-03-03 23:40:57 +08:00
|
|
|
|
|
|
|
repositories {
|
2015-03-24 00:14:26 +08:00
|
|
|
mavenCentral()
|
2010-03-03 23:40:57 +08:00
|
|
|
}
|
|
|
|
|
2019-08-23 07:47:11 +08:00
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
trang {
|
|
|
|
id = "trang"
|
|
|
|
implementationClass = "trang.TrangPlugin"
|
|
|
|
}
|
|
|
|
}
|
2013-10-04 03:15:09 +08:00
|
|
|
}
|
|
|
|
|
2010-07-07 06:52:11 +08:00
|
|
|
dependencies {
|
2019-08-23 07:54:01 +08:00
|
|
|
compile 'com.thaiopensource:trang:20091111'
|
|
|
|
compile 'net.sourceforge.saxon:saxon:9.1.0.8'
|
2013-01-04 08:27:15 +08:00
|
|
|
}
|
|
|
|
|
2010-03-03 23:40:57 +08:00
|
|
|
task ide(type: Copy) {
|
2015-03-24 00:14:26 +08:00
|
|
|
from configurations.runtime
|
|
|
|
into 'ide'
|
2010-03-03 23:40:57 +08:00
|
|
|
}
|