Owner:
Jan Wilhelms
Fact-based supply chain audit tool for Gradle dependencies.
https://github.com/jpwilhelms/lib-insight-plugin
Sources: https://github.com/jpwilhelms/lib-insight-plugin.git
Version 1.0.0 (latest)
Created 28 May 2026.
Fact-based supply chain audit tool for Gradle dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.wilhelms.gradle.lib-insight") version "1.0.0"
}
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("dev.wilhelms.gradle.lib-insight:dev.wilhelms.gradle.lib-insight.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.wilhelms.gradle.lib-insight") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.wilhelms.gradle.lib-insight:dev.wilhelms.gradle.lib-insight.gradle.plugin:1.0.0") } } apply(plugin = "dev.wilhelms.gradle.lib-insight") - Applying plugins to all subprojects .