io.github.redgreencoding.findclass
Owner:
Alphonse Bendt
A plugin that helps you find out from which .jar archive a class is loaded from
https://github.com/red-green-coding/findclass-gradle-plugin
Version 0.0.1 (latest)
Created 03 October 2021.
A plugin that helps you find out from which .jar archive a class is loaded from
Using the plugins DSL:
plugins {
id("io.github.redgreencoding.findclass") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.redgreencoding:findclass-gradle-plugin:0.0.1")
}
}
apply(plugin = "io.github.redgreencoding.findclass")
Using the plugins DSL:
plugins {
id "io.github.redgreencoding.findclass" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.redgreencoding:findclass-gradle-plugin:0.0.1"
}
}
apply plugin: "io.github.redgreencoding.findclass"