com.sevenheaven.autokeystoreplugin
Owner: 7heaven
Auto Keystore Plugin
Sources: http://github.com/7heaven
Version 1.0.3 (latest)
1.0.3
Created 05 April 2017.
Auto Keystore Plugin
Using the plugins DSL:
plugins {
id("com.sevenheaven.autokeystoreplugin") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.sevenheaven:autokeystore-plugin:1.0.3")
}
}
apply(plugin = "com.sevenheaven.autokeystoreplugin")
Using the plugins DSL:
plugins {
id "com.sevenheaven.autokeystoreplugin" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.sevenheaven:autokeystore-plugin:1.0.3"
}
}
apply plugin: "com.sevenheaven.autokeystoreplugin"