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)
0.0.7
Created 22 June 2021.
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.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.mrcjkb:module-finder:0.0.7")
}
}
apply(plugin = "com.github.mrcjkb.module-finder")
Using the plugins DSL:
plugins {
id "com.github.mrcjkb.module-finder" version "0.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.mrcjkb:module-finder:0.0.7"
}
}
apply plugin: "com.github.mrcjkb.module-finder"