Search Gradle plugins

Version 2.1

Created 26 February 2022.

Testcontainers build service

Using the plugins DSL:

plugins {
  id("io.github.stackunderflow111.testcontainers") version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.stackunderflow111:testcontainers-plugin:2.1")
  }
}

apply(plugin = "io.github.stackunderflow111.testcontainers")

Using the plugins DSL:

plugins {
  id "io.github.stackunderflow111.testcontainers" version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.stackunderflow111:testcontainers-plugin:2.1"
  }
}

apply plugin: "io.github.stackunderflow111.testcontainers"

Learn how to apply plugins to subprojects