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.
22 lines
462 B
22 lines
462 B
4 years ago
|
plugins {
|
||
|
id 'java-gradle-plugin' // so we can assign and ID to our plugin
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.ow2.asm:asm:8.0.1'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
gradlePlugin {
|
||
|
plugins {
|
||
|
// here we register our plugin with an ID
|
||
|
register("extra-java-module-info") {
|
||
|
id = "extra-java-module-info"
|
||
|
implementationClass = "org.gradle.sample.transform.javamodules.ExtraModuleInfoPlugin"
|
||
|
}
|
||
|
}
|
||
|
}
|