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 1.0.5

Created 11 January 2019.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nu.studer.credentials"

Learn how to apply plugins to subprojects