Search Gradle plugins

A Gradle plugin that injects secrets from Google Cloud Secret Manager into task environments and system properties.

https://github.com/AndrewZurn/gradle-gcp-gsm-injector

Sources: https://github.com/AndrewZurn/gradle-gcp-gsm-injector

Version 0.1.0 (latest)

Created 01 June 2026.

A Gradle plugin that injects secrets from Google Cloud Secret Manager into task environments and system properties.

Add this plugin to your build using the plugins DSL:

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