de.jjohannes.extra-java-module-info
Owner: Jendrik Johannes
Define additional module information
https://github.com/gradlex-org/extra-java-module-info
Sources: https://github.com/jjohannes/extra-java-module-info.git
Version 0.16 (latest)
Created 18 August 2022.
!!! Plugin ID changed to 'org.gradlex.extra-java-module-info' !!!
Add this plugin to your build using the plugins DSL:
plugins {
id("de.jjohannes.extra-java-module-info") version "0.16"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.jjohannes.extra-java-module-info:de.jjohannes.extra-java-module-info.gradle.plugin:0.16") }
It can then be applied in the precompiled script plugin:plugins { id("de.jjohannes.extra-java-module-info") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.jjohannes.extra-java-module-info:de.jjohannes.extra-java-module-info.gradle.plugin:0.16") } } apply(plugin = "de.jjohannes.extra-java-module-info")
- Applying plugins to all subprojects .