Search Gradle plugins

com.github.kxalex

Gradle plugin to build and publish Docker images from the build script.

https://github.com/kxalex/gradle-docker

Sources: https://github.com/kxalex/gradle-docker.git

Version 1.4.1 (latest)

Created 16 September 2021.

Gradle plugin to build and publish Docker images from the build script.

Using the plugins DSL:

plugins {
  id("com.github.kxalex") version "1.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.kxalex:gradle-docker:1.4.1")
  }
}

apply(plugin = "com.github.kxalex")

Using the plugins DSL:

plugins {
  id "com.github.kxalex" version "1.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.kxalex:gradle-docker:1.4.1"
  }
}

apply plugin: "com.github.kxalex"

Learn how to apply plugins to subprojects