com.eclipsesource.dockerizor
                  Owner:
                  
                    
                    Florian Waibel
                  
                
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.8.0
Created 14 July 2016.
                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.8.0"
}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.8.0") }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.8.0") } } apply(plugin = "com.eclipsesource.dockerizor")
- Applying plugins to all subprojects .