Search Gradle plugins

Owner: Deltafi

Adds 'grype' and 'trivy' tasks that scan the project's Docker image for vulnerabilities

https://deltafi.org

Sources: https://github.com/deltafi-org/deltafi

Version 2.57.0 (latest)

Created 23 June 2026.

Adds 'grype' and 'trivy' tasks that scan the project's Docker image for vulnerabilities

Add this plugin to your build using the plugins DSL:

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