Search Gradle plugins

io.github.pacificengine.build.docker

A plugin that helps you compile together all the dependencies for running in a docker instance

https://pacificengine.github.io/build/docker/

Sources: https://github.com/PacificEngine/build

Version 0.0.2 (latest)

Created 13 January 2024.

A plugin that helps you compile together all the dependencies for running in a docker instance

Using the plugins DSL:

plugins {
  id("io.github.pacificengine.build.docker") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.pacificengine.build:docker:0.0.2")
  }
}

apply(plugin = "io.github.pacificengine.build.docker")

Using the plugins DSL:

plugins {
  id "io.github.pacificengine.build.docker" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.pacificengine.build:docker:0.0.2"
  }
}

apply plugin: "io.github.pacificengine.build.docker"

Learn how to apply plugins to subprojects