io.github.machaval.compile-module-info-plugin
Owner: Mariano de Achaval
Compiler for module-info.java
https://github.com/machaval/module-info-compiler
Sources: https://github.com/machaval/module-info-compiler.git
Using the plugins DSL:
plugins {
id("io.github.machaval.compile-module-info-plugin") version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.machaval:module-info-compiler:3.2")
}
}
apply(plugin = "io.github.machaval.compile-module-info-plugin")
Using the plugins DSL:
plugins {
id "io.github.machaval.compile-module-info-plugin" version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.machaval:module-info-compiler:3.2"
}
}
apply plugin: "io.github.machaval.compile-module-info-plugin"