Search Gradle plugins

Version 3.0.0 (latest)

3.0.0

Created 15 August 2024.

Read and use vault secrets in your build script

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liftric.vault-client-plugin") version "3.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.liftric.vault:vault-client-plugin:3.0.0")
      }
    }
    
    apply(plugin = "com.liftric.vault-client-plugin")
  • Applying plugins to all subprojects .