Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.redpillanalytics.checkmate.odi") version "0.1.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.redpillanalytics:checkmate-odi:0.1.9")
      }
    }
    
    apply(plugin = "com.redpillanalytics.checkmate.odi")
  • Applying plugins to all subprojects .