Search Gradle plugins

com.redpillanalytics.checkmate.core

Checkmate is a solution for enabling Continuous Integration for products that don't naturally support it. The Core plugin provides the foundation for additional plugins.

http://redpillanalytics.com/checkmate/

Sources: https://github.com/RedPillAnalytics/checkmate

Version 8.0.16

8.0.16

Created 28 October 2017.

Checkmate enables Continuous Delivery for products or platforms that don't naturally support it. The Core plugin provides the foundation for additional plugins.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.redpillanalytics.checkmate.core") version "8.0.16"
}

See also:

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