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 7.2.6-SNAPSHOT

Created 06 July 2017.

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.

Using the plugins DSL:

plugins {
  id("com.redpillanalytics.checkmate.core") version "7.2.6-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.redpillanalytics:checkmate:7.2.6-SNAPSHOT")
  }
}

apply(plugin = "com.redpillanalytics.checkmate.core")

Using the plugins DSL:

plugins {
  id "com.redpillanalytics.checkmate.core" version "7.2.6-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.redpillanalytics:checkmate:7.2.6-SNAPSHOT"
  }
}

apply plugin: "com.redpillanalytics.checkmate.core"

Learn how to apply plugins to subprojects