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.16.6
0.16.6
Created 29 June 2022.
Simplifies usage of Docker Compose for integration testing in Gradle environment.
Using the plugins DSL:
plugins {
id("com.avast.gradle.docker-compose") version "0.16.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.avast.gradle:gradle-docker-compose-plugin:0.16.6")
}
}
apply(plugin = "com.avast.gradle.docker-compose")
Using the plugins DSL:
plugins {
id "com.avast.gradle.docker-compose" version "0.16.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.avast.gradle:gradle-docker-compose-plugin:0.16.6"
}
}
apply plugin: "com.avast.gradle.docker-compose"