Search Gradle plugins

com.vantiq.gradle-dcompose-plugin

Plugin for automatically managing Docker container lifecycles in Gradle. This plugin is a fork of https://github.com/chrisgahlert/gradle-dcompose-plugin

https://github.com/Vantiq/gradle-dcompose-plugin

Sources: https://github.com/Vantiq/gradle-dcompose-plugin

Version 0.18.0 (latest)

0.18.0

Created 18 September 2024.

Plugin for automatically managing Docker container lifecycles in Gradle. This plugin is a fork of https://github.com/chrisgahlert/gradle-dcompose-plugin

Using the plugins DSL:

plugins {
  id("com.vantiq.gradle-dcompose-plugin") version "0.18.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.vantiq:gradle-dcompose-plugin:0.18.0")
  }
}

apply(plugin = "com.vantiq.gradle-dcompose-plugin")

Using the plugins DSL:

plugins {
  id "com.vantiq.gradle-dcompose-plugin" version "0.18.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.vantiq:gradle-dcompose-plugin:0.18.0"
  }
}

apply plugin: "com.vantiq.gradle-dcompose-plugin"

Learn how to apply plugins to subprojects