Search Gradle plugins

Version 2.6.0

Created 02 February 2018.

A Gradle plugin for the secure storage of credentials.

Using the plugins DSL:

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

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.6.0")
  }
}

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

Using the plugins DSL:

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

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.6.0"
  }
}

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

Learn how to apply plugins to subprojects