Search Gradle plugins

Owner: Root io

Automatically patches vulnerable Java dependencies with secure versions from the Root.io registry — no changes to your dependency declarations required.

https://docs.root.io/rlc/java#gradle

Sources: https://github.com/rootio-avr/rootio_gradle_plugin

Version 0.2.0 (latest)

Created 05 May 2026.

Automatically patches vulnerable Java dependencies with secure versions from the Root.io registry — no changes to your dependency declarations required.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.root.patcher") version "0.2.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("io.root.patcher:io.root.patcher.gradle.plugin:0.2.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.root.patcher")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.root.patcher:io.root.patcher.gradle.plugin:0.2.0")
      }
    }
    
    apply(plugin = "io.root.patcher")
  • Applying plugins to all subprojects .