com.github.mrcjkb.module-finder
Owner: Marc Jakobi
Enables the use of non-modular Java dependencies without an "Automatic Module Name" attribute in their manifest.
https://github.com/MrcJkb/module-finder
Sources: https://github.com/test
Version 0.0.7 (latest)
Created 22 June 2021.
Enables the use of non-modular Java dependencies without an "Automatic Module Name" attribute in their manifest.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.mrcjkb.module-finder") version "0.0.7"
}
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("com.github.mrcjkb.module-finder:com.github.mrcjkb.module-finder.gradle.plugin:0.0.7") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.mrcjkb.module-finder") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.mrcjkb.module-finder:com.github.mrcjkb.module-finder.gradle.plugin:0.0.7") } } apply(plugin = "com.github.mrcjkb.module-finder")
- Applying plugins to all subprojects .