keith.thompson.swarmer
Owner: Keith Thompson
Plugin for Swarmer CLI tool by Juno
https://github.com/keiththompson/swarmer-gradle-plugin
Sources: https://github.com/keiththompson/swarmer-gradle-plugin
Version 0.1 (latest)
Created 17 August 2018.
Plugin for Swarmer CLI tool by Juno
Add this plugin to your build using the plugins DSL:
plugins {
id("keith.thompson.swarmer") version "0.1"
}
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("keith.thompson.swarmer:keith.thompson.swarmer.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("keith.thompson.swarmer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("keith.thompson.swarmer:keith.thompson.swarmer.gradle.plugin:0.1") } } apply(plugin = "keith.thompson.swarmer")
- Applying plugins to all subprojects .