Search Gradle plugins

Version 2.0.1

Created 15 August 2015.

A Gradle plugin for the secure storage of credentials.

Using the plugins DSL:

plugins {
  id("de.qaware.seu.as.code.credentials") version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.qaware.seu.as.code:seuac-credentials-plugin:2.0.1")
  }
}

apply(plugin = "de.qaware.seu.as.code.credentials")

Using the plugins DSL:

plugins {
  id "de.qaware.seu.as.code.credentials" version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.qaware.seu.as.code:seuac-credentials-plugin:2.0.1"
  }
}

apply plugin: "de.qaware.seu.as.code.credentials"

Learn how to apply plugins to subprojects