net.praqma.promote
Owner: Hans Georg Naesheim
Promote a bundeled collection of Artifacts
https://github.com/naesheim/PromotePlugin
Sources: https://github.com/praqma/ArtifactPromoter
Version 1.0.2 (latest)
1.0.2
Created 13 March 2017.
Promote a bundeled collection of Artifacts
Using the plugins DSL:
plugins {
id("net.praqma.promote") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.praqma:PromotePlugin:1.0.2")
}
}
apply(plugin = "net.praqma.promote")
Using the plugins DSL:
plugins {
id "net.praqma.promote" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.praqma:PromotePlugin:1.0.2"
}
}
apply plugin: "net.praqma.promote"