de.datenkollektiv.dockerizor
Owner: Florian Waibel
Gradle plug-in to create a Docker image that includes an Eclipse Virgo container
https://github.com/datenkollektiv/dockerizor
Sources: https://github.com/datenkollektiv/dockerizor
Version 0.9.2.BUILD-SNAPSHOT
0.9.2.BUILD-SNAPSHOT
Created 24 May 2020.
Gradle plug-in to create a Docker image that includes an Eclipse Virgo container
Using the plugins DSL:
plugins {
id("de.datenkollektiv.dockerizor") version "0.9.2.BUILD-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.datenkollektiv.dockerizor:dockerizor:0.9.2.BUILD-SNAPSHOT")
}
}
apply(plugin = "de.datenkollektiv.dockerizor")
Using the plugins DSL:
plugins {
id "de.datenkollektiv.dockerizor" version "0.9.2.BUILD-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.datenkollektiv.dockerizor:dockerizor:0.9.2.BUILD-SNAPSHOT"
}
}
apply plugin: "de.datenkollektiv.dockerizor"