Search Gradle plugins

Version 1.2.6 (latest)

Created 30 June 2021.

Gradle plugin for building and running docker images and containers that can be used during unit tests.

Using the plugins DSL:

plugins {
  id("com.github.gelangweilte-studenten.gradle-docker-tests") version "1.2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.gelangweilte-studenten:gradle-docker-tests:1.2.6")
  }
}

apply(plugin = "com.github.gelangweilte-studenten.gradle-docker-tests")

Using the plugins DSL:

plugins {
  id "com.github.gelangweilte-studenten.gradle-docker-tests" version "1.2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.gelangweilte-studenten:gradle-docker-tests:1.2.6"
  }
}

apply plugin: "com.github.gelangweilte-studenten.gradle-docker-tests"

Learn how to apply plugins to subprojects