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.6

Created 08 December 2020.

Enables the use of non-modular Java dependencies without an "Automatic Module Name" attribute in their manifest.

Using the plugins DSL:

plugins {
  id("com.github.mrcjkb.module-finder") version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.mrcjkb:module-finder:0.0.6")
  }
}

apply(plugin = "com.github.mrcjkb.module-finder")

Using the plugins DSL:

plugins {
  id "com.github.mrcjkb.module-finder" version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.mrcjkb:module-finder:0.0.6"
  }
}

apply plugin: "com.github.mrcjkb.module-finder"

Learn how to apply plugins to subprojects