com.github.buildcontainers
Owner: Przemysław Piórkowski
A plugin that allows you to build and test your project inside container.
https://github.com/buildcontainers/buildcontainers-gradle-plugin
Sources: https://github.com/buildcontainers/buildcontainers-gradle-plugin.git
Version 0.1.0 (latest)
0.1.0
Created 24 March 2019.
A plugin that allows you to build and test your project inside container.
Using the plugins DSL:
plugins {
id("com.github.buildcontainers") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.buildcontainers:buildcontainers-gradle-plugin:0.1.0")
}
}
apply(plugin = "com.github.buildcontainers")
Using the plugins DSL:
plugins {
id "com.github.buildcontainers" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.buildcontainers:buildcontainers-gradle-plugin:0.1.0"
}
}
apply plugin: "com.github.buildcontainers"