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.
28 lines
433 B
28 lines
433 B
apply plugin: "java-gradle-plugin" |
|
|
|
repositories { |
|
mavenCentral() |
|
} |
|
|
|
gradlePlugin { |
|
plugins { |
|
trang { |
|
id = "trang" |
|
implementationClass = "trang.TrangPlugin" |
|
} |
|
locks { |
|
id = "locks" |
|
implementationClass = "lock.GlobalLockPlugin" |
|
} |
|
} |
|
} |
|
|
|
dependencies { |
|
compile 'com.thaiopensource:trang:20091111' |
|
compile 'net.sourceforge.saxon:saxon:9.1.0.8' |
|
} |
|
|
|
task ide(type: Copy) { |
|
from configurations.runtime |
|
into 'ide' |
|
}
|
|
|