openxp.osxkeychainaccess
Owner: Rune Forberg
Fetch any application password from the OSX Keychain Access app.
https://bitbucket.org/openxp/osxkeychainaccesss
Sources: https://bitbucket.org/openxp/osxkeychainaccesss
Version 1.0.0 (latest)
1.0.0
Created 07 December 2015.
Fetch any application password from the OSX Keychain Access app.
Using the plugins DSL:
plugins {
id("openxp.osxkeychainaccess") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.openxp:OSXKeychainAccessPlugin:1.0.0")
}
}
apply(plugin = "openxp.osxkeychainaccess")
Using the plugins DSL:
plugins {
id "openxp.osxkeychainaccess" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.openxp:OSXKeychainAccessPlugin:1.0.0"
}
}
apply plugin: "openxp.osxkeychainaccess"