Search Gradle plugins

Version 0.0.1

Created 31 October 2018.

A Common Set of Gradle's Tasks for Backend's and Frontend's Development<br> automatically applied

Using the plugins DSL:

plugins {
  id("all.shared.gradle.code-common-tasks") version "0.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:0.0.1")
  }
}

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

Using the plugins DSL:

plugins {
  id "all.shared.gradle.code-common-tasks" version "0.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:0.0.1"
  }
}

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

Learn how to apply plugins to subprojects