Owner:
Sam Gammon
Configures Gradle projects for use with Buildless as a drop-in remote cache
Version 1.0.0-rc2 (latest)
Created 15 December 2023.
Configures Gradle projects for use with Buildless as a drop-in remote cache
Add this plugin to your build using the plugins DSL:
plugins {
id("build.less") version "1.0.0-rc2"
}
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("build.less:build.less.gradle.plugin:1.0.0-rc2") }It can then be applied in the precompiled script plugin:plugins { id("build.less") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("build.less:build.less.gradle.plugin:1.0.0-rc2") } } apply(plugin = "build.less") - Applying plugins to all subprojects .