com.avast.gradle.docker-compose
Owner: Michal Augustýn
Simplifies usage of Docker Compose for integration testing in Gradle environment.
https://github.com/avast/gradle-docker-compose-plugin
Sources: https://github.com/avast/docker-compose-gradle-plugin
Version 0.17.12 (latest)
Created 13 December 2024.
Simplifies usage of Docker Compose for integration testing in Gradle environment.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.avast.gradle.docker-compose") version "0.17.12"
}
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.avast.gradle.docker-compose:com.avast.gradle.docker-compose.gradle.plugin:0.17.12") }
It can then be applied in the precompiled script plugin:plugins { id("com.avast.gradle.docker-compose") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.avast.gradle.docker-compose:com.avast.gradle.docker-compose.gradle.plugin:0.17.12") } } apply(plugin = "com.avast.gradle.docker-compose")
- Applying plugins to all subprojects .