Search Gradle plugins

Version 1.2.3

1.2.3

Created 28 June 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.gelangweilte-studenten:gradle-docker-tests:1.2.3")
      }
    }
    
    apply(plugin = "com.github.gelangweilte-studenten.gradle-docker-tests")
  • Applying plugins to all subprojects .