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 2.1

Created 27 December 2019.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nu.studer.credentials"

Learn how to apply plugins to subprojects