Search Gradle plugins

us.ihmc.ihmc-ci

Use this plugin to generate load-balanced and categorized test suites for use with annotations provided in ihmc-ci-core-api.

https://github.com/ihmcrobotics/ihmc-ci

Sources: https://github.com/ihmcrobotics/ihmc-continuous-integration-framework

Add this plugin to your build using the plugins DSL:

plugins {
  id("us.ihmc.ihmc-ci") version "1.1.5"
}

See also:

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