Search Gradle plugins

Version 1.4.0 (latest)

1.4.0

Created 03 October 2023.

Spawns Docker Compose environments for main code and test suites as a Gradle's Shared Build Service

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.gmazzo.docker.compose") version "1.4.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.gmazzo.docker.compose:plugin:1.4.0")
      }
    }
    
    apply(plugin = "io.github.gmazzo.docker.compose")
  • Applying plugins to all subprojects .