io.aeon.docker-build
Owner: Pid *
Aeon Gradle Plugins for Docker
https://github.com/aeon-io/gradle-plugins
Sources: https://github.com/aeon-io/gradle-plugins
Version 0.0.1.BUILD-SNAPSHOT
0.0.1.BUILD-SNAPSHOT
Created 13 January 2016.
Aeon Gradle Plugins for Docker
Using the plugins DSL:
plugins {
id("io.aeon.docker-build") version "0.0.1.BUILD-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.aeon:docker-build-plugin:0.0.1.BUILD-SNAPSHOT")
}
}
apply(plugin = "io.aeon.docker-build")
Using the plugins DSL:
plugins {
id "io.aeon.docker-build" version "0.0.1.BUILD-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.aeon:docker-build-plugin:0.0.1.BUILD-SNAPSHOT"
}
}
apply plugin: "io.aeon.docker-build"