mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
21 lines
462 B
Groovy
21 lines
462 B
Groovy
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"
|
|
}
|
|
}
|
|
}
|