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