no.skatteetaten.gradle.aurora-docker
Owner: Skatteetaten
Gradle plugin to build and test Docker images
https://github.com/Skatteetaten/aurora-docker-gradle-plugin
Sources: https://github.com/Skatteetaten/aurora-docker-gradle-plugin
Version 2.2.7 (latest)
2.2.7
Created 29 September 2021.
Gradle plugin to build and test Docker images
Using the plugins DSL:
plugins {
id("no.skatteetaten.gradle.aurora-docker") version "2.2.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("no.skatteetaten.aurora.gradle.plugins:aurora-docker-plugin:2.2.7")
}
}
apply(plugin = "no.skatteetaten.gradle.aurora-docker")
Using the plugins DSL:
plugins {
id "no.skatteetaten.gradle.aurora-docker" version "2.2.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "no.skatteetaten.aurora.gradle.plugins:aurora-docker-plugin:2.2.7"
}
}
apply plugin: "no.skatteetaten.gradle.aurora-docker"