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 0.0.2

Created 13 October 2014.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nu.studer.credentials"

Learn how to apply plugins to subprojects