Search Gradle plugins

Version 4.0.1 (latest)

4.0.1

Created 15 August 2024.

Control Gradle behaviour on a variety of cloud CI platforms

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.ysb33r.cloudci") version "4.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.ysb33r.gradle:gradle-cloudci-plugin:4.0.1")
      }
    }
    
    apply(plugin = "org.ysb33r.cloudci")
  • Applying plugins to all subprojects .