Search Gradle plugins

Version 1.26 (latest)

1.26

Created 31 July 2023.

Gradle plugin for delivering and upgrading software.

Add this plugin to your build using the plugins DSL:

plugins {
  id("us.ihmc.ihmc-cd") version "1.26"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("us.ihmc:ihmc-cd:1.26")
      }
    }
    
    apply(plugin = "us.ihmc.ihmc-cd")
  • Applying plugins to all subprojects .