Search Gradle plugins

de.datenkollektiv.dockerizor

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

Created 03 June 2020.

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("de.datenkollektiv.dockerizor") version "0.9.4"
}

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("de.datenkollektiv.dockerizor:de.datenkollektiv.dockerizor.gradle.plugin:0.9.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.datenkollektiv.dockerizor")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.datenkollektiv.dockerizor:de.datenkollektiv.dockerizor.gradle.plugin:0.9.4")
      }
    }
    
    apply(plugin = "de.datenkollektiv.dockerizor")
  • Applying plugins to all subprojects .