io.gitlab.nexus-at.dummy-cd
Owner: Marcin Zajączkowski
Dummy Gradle plugin for testing Continuous Delivery with CDeliveryBoy plugin
https://github.com/szpak/dummy-cd-plugin/
Sources: https://github.com/szpak/dummy-cd-plugin/
Version 0.2.13 (latest)
Created 05 October 2020.
Dummy Gradle plugin for testing Continuous Delivery with CDeliveryBoy plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("io.gitlab.nexus-at.dummy-cd") version "0.2.13"
}
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.gitlab.nexus-at.dummy-cd:io.gitlab.nexus-at.dummy-cd.gradle.plugin:0.2.13") }
It can then be applied in the precompiled script plugin:plugins { id("io.gitlab.nexus-at.dummy-cd") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.gitlab.nexus-at.dummy-cd:io.gitlab.nexus-at.dummy-cd.gradle.plugin:0.2.13") } } apply(plugin = "io.gitlab.nexus-at.dummy-cd")
- Applying plugins to all subprojects .