io.github.nigelgbanks.IsleBuildCtl
Owner: Nigel Geoffrey Banks
Wrapper around buildctrl for use with buildkit
https://github.com/Islandora-Devops/isle-gradle-docker-plugin
Sources: https://github.com/Islandora-Devops/isle-gradle-docker-plugin
Version 1.0.12 (latest)
1.0.12
Created 08 December 2022.
Wrapper around buildctrl for use with buildkit
Using the plugins DSL:
plugins {
id("io.github.nigelgbanks.IsleBuildCtl") version "1.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.nigelgbanks:isle-gradle-docker-plugin:1.0.12")
}
}
apply(plugin = "io.github.nigelgbanks.IsleBuildCtl")
Using the plugins DSL:
plugins {
id "io.github.nigelgbanks.IsleBuildCtl" version "1.0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.nigelgbanks:isle-gradle-docker-plugin:1.0.12"
}
}
apply plugin: "io.github.nigelgbanks.IsleBuildCtl"