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.9.1 (latest)

Created 06 June 2018.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.eclipsesource.dockerizor:com.eclipsesource.dockerizor.gradle.plugin:0.9.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.eclipsesource.dockerizor")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.eclipsesource.dockerizor:com.eclipsesource.dockerizor.gradle.plugin:0.9.1")
      }
    }
    
    apply(plugin = "com.eclipsesource.dockerizor")
  • Applying plugins to all subprojects .