Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 14 November 2024.

A plugin simplifying the Docker configuration

Using the plugins DSL:

plugins {
  id("com.sinch.gradle.dockerhelper") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.sinch.gradle:dockerhelper:0.1.0")
  }
}

apply(plugin = "com.sinch.gradle.dockerhelper")

Using the plugins DSL:

plugins {
  id "com.sinch.gradle.dockerhelper" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.sinch.gradle:dockerhelper:0.1.0"
  }
}

apply plugin: "com.sinch.gradle.dockerhelper"

Learn how to apply plugins to subprojects