Search Gradle plugins

com.eclipsesource.dockerizor

Gradle plug-in to create a Docker image that includes an Eclipse Virgo container

https://github.com/eclipsesource/dockerizor

Sources: https://github.com/eclipsesource/dockerizor

Version 0.2

Created 02 February 2016.

Gradle plug-in to create a Docker image that includes an Eclipse Virgo container

Using the plugins DSL:

plugins {
  id("com.eclipsesource.dockerizor") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.eclipsesource.dockerizor:dockerizor:0.2")
  }
}

apply(plugin = "com.eclipsesource.dockerizor")

Using the plugins DSL:

plugins {
  id "com.eclipsesource.dockerizor" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.eclipsesource.dockerizor:dockerizor:0.2"
  }
}

apply plugin: "com.eclipsesource.dockerizor"

Learn how to apply plugins to subprojects