##// END OF EJS Templates
Reworked ImageName, added imageName property to the project extension, added TagImage task.
Reworked ImageName, added imageName property to the project extension, added TagImage task.

File last commit:

r4:00ef236c472b v1.1 default
r4:00ef236c472b v1.1 default
Show More
build.gradle
27 lines | 675 B | text/x-groovy | GroovyLexer
cin
The gradle plugin for building containers with minimal functionality pushImage, saveImage, buildImage
r0 plugins {
id "java-gradle-plugin"
cin
Reworked ImageName, added imageName property to the project extension, added TagImage task.
r4 id "com.gradle.plugin-publish" version "0.16.0"
cin
The gradle plugin for building containers with minimal functionality pushImage, saveImage, buildImage
r0 }
repositories {
mavenCentral()
}
gradlePlugin {
plugins {
containerPlugin {
id = 'org.implab.gradle-container'
cin
Reworked ImageName, added imageName property to the project extension, added TagImage task.
r4 displayName = "Container building plugin"
description = 'Build and publish container images with docker or podman. Simple wrapper around cli.'
cin
The gradle plugin for building containers with minimal functionality pushImage, saveImage, buildImage
r0 implementationClass = 'org.implab.gradle.containers.ContainerPlugin'
}
}
}
pluginBundle {
website = 'https://code.implab.org/implab/gradle-container-plugin'
vcsUrl = 'https://code.implab.org/implab/gradle-container-plugin'
tags = ['containers', 'image', 'docker', 'podman']
}