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