Owner:
Rob Murdock
This plugin will generate a fingerprint based on all the production code in a project. This is in early development, buyer beware.
Version 1.8.46
Created 01 February 2026.
This plugin will generate a fingerprint based on all the production code in a project. This is in early development, buyer beware.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.zegreatrob.tools.fingerprint") version "1.8.46"
}
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("com.zegreatrob.tools.fingerprint:com.zegreatrob.tools.fingerprint.gradle.plugin:1.8.46") }It can then be applied in the precompiled script plugin:plugins { id("com.zegreatrob.tools.fingerprint") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.zegreatrob.tools.fingerprint:com.zegreatrob.tools.fingerprint.gradle.plugin:1.8.46") } } apply(plugin = "com.zegreatrob.tools.fingerprint") - Applying plugins to all subprojects .