搜索 Gradle 插件

com.redpillanalytics.checkmate.core

拥有者: Stewart Bryson

Checkmate 是一种使不支持其的功能产品能够启用持续集成的解决方案。核心插件为其他插件提供基础。

http://redpillanalytics.com/checkmate/

来源: https://github.com/RedPillAnalytics/checkmate

版本 9.0.14(最新版本)

9.0.14

创建于 2018 年 9 月 7 日。

Checkmate 使不支持其的功能产品或平台能够启用持续交付。核心插件为其他插件提供基础。

使用 plugins DSL

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

使用 旧版插件应用

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

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

使用 plugins DSL

plugins {
  id "com.redpillanalytics.checkmate.core" version "9.0.14"
}

使用 旧版插件应用

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

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

学习如何将插件应用于子项目