io.github.stackunderflow111.testcontainers
Owner: Stack Underflow
Configure an existing task to run testcontainers in its doFirst block
https://github.com/stackunderflow111/testcontainers-plugin
Sources: https://github.com/stackunderflow111/testcontainers-plugin.git
Using the plugins DSL:
plugins {
id("io.github.stackunderflow111.testcontainers") version "2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.stackunderflow111:testcontainers-plugin:2.3")
}
}
apply(plugin = "io.github.stackunderflow111.testcontainers")
Using the plugins DSL:
plugins {
id "io.github.stackunderflow111.testcontainers" version "2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.stackunderflow111:testcontainers-plugin:2.3"
}
}
apply plugin: "io.github.stackunderflow111.testcontainers"