Spring Security
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.
 
 
 
 

24 lines
354 B

apply plugin: "java-gradle-plugin"
repositories {
mavenCentral()
}
gradlePlugin {
plugins {
trang {
id = "trang"
implementationClass = "trang.TrangPlugin"
}
}
}
dependencies {
compile 'com.thaiopensource:trang:20091111'
compile 'net.sourceforge.saxon:saxon:9.1.0.8'
}
task ide(type: Copy) {
from configurations.runtime
into 'ide'
}