io.beekeeper.gradle.plugin
Owner: Beekeeper
A plugin that runs a set of utility plugins used at beekeeper
https://github.com/beekpr/beekeeper-gradle-plugins/blob/master/README.md
Sources: https://github.com/beekpr/beekeeper-gradle-plugin
Version 0.7.6
Created 19 September 2019.
A plugin that runs a set of utility plugins used at beekeeper
Add this plugin to your build using the plugins DSL:
plugins {
id("io.beekeeper.gradle.plugin") version "0.7.6"
}
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.beekeeper.gradle.plugin:io.beekeeper.gradle.plugin.gradle.plugin:0.7.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.beekeeper.gradle.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.beekeeper.gradle.plugin:io.beekeeper.gradle.plugin.gradle.plugin:0.7.6") } } apply(plugin = "io.beekeeper.gradle.plugin")
- Applying plugins to all subprojects .