com.cloudbees.cd.plugins.specs
Owner: CloudBees CD Plugins Team
Collection of Gradle tasks and dependencies for CloudBees CD plugin specs projects
Sources: https://github.com/horodchukanton/cbcd-plugin-build
Version 1.10.0-SNAPSHOT
Created 19 April 2021.
Collection of Gradle tasks and dependencies for CloudBees CD plugin specs projects
Add this plugin to your build using the plugins DSL:
plugins {
id("com.cloudbees.cd.plugins.specs") version "1.10.0-SNAPSHOT"
}
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("com.cloudbees.cd.plugins.specs:com.cloudbees.cd.plugins.specs.gradle.plugin:1.10.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.cloudbees.cd.plugins.specs") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.cloudbees.cd.plugins.specs:com.cloudbees.cd.plugins.specs.gradle.plugin:1.10.0-SNAPSHOT") } } apply(plugin = "com.cloudbees.cd.plugins.specs")
- Applying plugins to all subprojects .