Search Gradle plugins

nu.studer.credentials

Gradle plugin to store and access encrypted credentials for use in Gradle builds.

https://github.com/etiennestuder/gradle-credentials-plugin

Version 3.0 (latest)

Created 22 August 2021.

Gradle plugin to store and access encrypted credentials for use in Gradle builds.

Using the plugins DSL:

plugins {
  id("nu.studer.credentials") version "3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nu.studer:gradle-credentials-plugin:3.0")
  }
}

apply(plugin = "nu.studer.credentials")

Using the plugins DSL:

plugins {
  id "nu.studer.credentials" version "3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nu.studer:gradle-credentials-plugin:3.0"
  }
}

apply plugin: "nu.studer.credentials"

Learn how to apply plugins to subprojects