com.vantiq.gradle-dcompose-plugin
Owner: Vantiq, Inc
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)
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
Add this plugin to your build using the plugins DSL:
plugins {
id("com.vantiq.gradle-dcompose-plugin") version "0.18.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.vantiq.gradle-dcompose-plugin:com.vantiq.gradle-dcompose-plugin.gradle.plugin:0.18.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.vantiq.gradle-dcompose-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.vantiq.gradle-dcompose-plugin:com.vantiq.gradle-dcompose-plugin.gradle.plugin:0.18.0") } } apply(plugin = "com.vantiq.gradle-dcompose-plugin")
- Applying plugins to all subprojects .