blue.starry.scriptextender
Owner:
Slash Nephy
ð A Gradle plugin which extends the existing Gradle Kotlin DSL.
https://github.com/SlashNephy/gradle-script-extender
Sources: https://github.com/SlashNephy/gradle-script-extender
Version 0.0.2 (latest)
Created 20 February 2021.
ð A Gradle plugin which extends the existing Gradle Kotlin DSL.
Add this plugin to your build using the plugins DSL:
plugins {
id("blue.starry.scriptextender") version "0.0.2"
}
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("blue.starry.scriptextender:blue.starry.scriptextender.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("blue.starry.scriptextender") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("blue.starry.scriptextender:blue.starry.scriptextender.gradle.plugin:0.0.2") } } apply(plugin = "blue.starry.scriptextender")
- Applying plugins to all subprojects .