Search Gradle plugins

Version 1.0.1 (latest)

Created 10 November 2018.

A Common Set of Gradle's Tasks for Backend's and Frontend's Development

Using the plugins DSL:

plugins {
  id("all.shared.gradle.code-common-tasks") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.all.shared.gradle.code-common-tasks:code-common-tasks:1.0.1")
  }
}

apply(plugin = "all.shared.gradle.code-common-tasks")

Using the plugins DSL:

plugins {
  id "all.shared.gradle.code-common-tasks" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.all.shared.gradle.code-common-tasks:code-common-tasks:1.0.1"
  }
}

apply plugin: "all.shared.gradle.code-common-tasks"

Learn how to apply plugins to subprojects