Search Gradle plugins

io.github.zero88.qwe.gradle.root

Owner: zero88

This plugin adds some utilities in root project in a multi-project build

https://github.com/play-iot/gradle-plugin

Sources: https://github.com/zero88/qwe.git

Version 1.0.0 (latest)

Created 20 February 2021.

This plugin adds some utilities in root project in a multi-project build

Using the plugins DSL:

plugins {
  id("io.github.zero88.qwe.gradle.root") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.zero88.qwe:qwe-gradle-plugin:1.0.0")
  }
}

apply(plugin = "io.github.zero88.qwe.gradle.root")

Using the plugins DSL:

plugins {
  id "io.github.zero88.qwe.gradle.root" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.zero88.qwe:qwe-gradle-plugin:1.0.0"
  }
}

apply plugin: "io.github.zero88.qwe.gradle.root"

Learn how to apply plugins to subprojects