org.curioswitch.gradle-tool-downloader-plugin
Owner: Choko
Plugin for automatically downloading various tools needed by codebases
Sources: https://github.com/curioswitch/curiostack.git
Version 0.3.0 (latest)
Created 13 March 2022.
Plugin for automatically downloading various tools needed by codebases
Add this plugin to your build using the plugins DSL:
plugins {
id("org.curioswitch.gradle-tool-downloader-plugin") version "0.3.0"
}
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("org.curioswitch.gradle-tool-downloader-plugin:org.curioswitch.gradle-tool-downloader-plugin.gradle.plugin:0.3.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.curioswitch.gradle-tool-downloader-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.curioswitch.gradle-tool-downloader-plugin:org.curioswitch.gradle-tool-downloader-plugin.gradle.plugin:0.3.0") } } apply(plugin = "org.curioswitch.gradle-tool-downloader-plugin")
- Applying plugins to all subprojects .