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 0.6.1-SNAPSHOT
Created 19 February 2021.
This plugin adds some utilities in root project in a multi-project build
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.zero88.qwe.gradle.root") version "0.6.1-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.zero88.qwe.gradle.root:io.github.zero88.qwe.gradle.root.gradle.plugin:0.6.1-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.zero88.qwe.gradle.root") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.zero88.qwe.gradle.root:io.github.zero88.qwe.gradle.root.gradle.plugin:0.6.1-SNAPSHOT") } } apply(plugin = "io.github.zero88.qwe.gradle.root")
- Applying plugins to all subprojects .