pl.greenpath.gradle.docker.microservices
                  Owner:
                  
                    
                    Michał Borek
                  
                
Microservices gradle plugin
https://github.com/michalborek/docker-microservices-gradle-plugin
Sources: https://github.com/michalborek/docker-microservices-gradle-plugin
Add this plugin to your build using the plugins DSL:
plugins {
  id("pl.greenpath.gradle.docker.microservices") version "1.6.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("pl.greenpath.gradle.docker.microservices:pl.greenpath.gradle.docker.microservices.gradle.plugin:1.6.4") }It can then be applied in the precompiled script plugin:plugins { id("pl.greenpath.gradle.docker.microservices") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pl.greenpath.gradle.docker.microservices:pl.greenpath.gradle.docker.microservices.gradle.plugin:1.6.4") } } apply(plugin = "pl.greenpath.gradle.docker.microservices")
- Applying plugins to all subprojects .