Search Gradle plugins

Version 1.0.0-RC4

Created 14 December 2018.

Adds several extensions and tasks used in all our projects

Using the plugins DSL:

plugins {
  id("cz.ackee.gradle.plugin") version "1.0.0-RC4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.cz.ackee:gradle-plugin:1.0.0-RC4")
  }
}

apply(plugin = "cz.ackee.gradle.plugin")

Using the plugins DSL:

plugins {
  id "cz.ackee.gradle.plugin" version "1.0.0-RC4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.cz.ackee:gradle-plugin:1.0.0-RC4"
  }
}

apply plugin: "cz.ackee.gradle.plugin"

Learn how to apply plugins to subprojects