14 lines
240 B
Groovy
14 lines
240 B
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
}
|
|
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("JdepsPlugin") {
|
|
id = 'net.woggioni.gradle.jdeps'
|
|
implementationClass = "net.woggioni.gradle.jdeps.JdepsPlugin"
|
|
}
|
|
}
|
|
}
|