Search Gradle plugins

com.github.mrcjkb.module-finder

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)

0.0.7

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.mrcjkb:module-finder:0.0.7")
      }
    }
    
    apply(plugin = "com.github.mrcjkb.module-finder")
  • Applying plugins to all subprojects .