com.github.gelangweilte-studenten.gradle-docker-tests
Owner: floribe2000
Gradle plugin for building and running docker images and containers that can be used during unit tests.
https://github.com/Gelangweilte-Studenten/gradle-docker-tests
Sources: https://github.com/Gelangweilte-Studenten/gradle-docker-tests
Version 1.2.6 (latest)
1.2.6
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"