com.redpillanalytics.checkmate.core
Owner: Stewart Bryson
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 9.0.12
Created 02 August 2018.
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 "9.0.12"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.redpillanalytics.checkmate.core:com.redpillanalytics.checkmate.core.gradle.plugin:9.0.12") }
It can then be applied in the precompiled script plugin:plugins { id("com.redpillanalytics.checkmate.core") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.redpillanalytics.checkmate.core:com.redpillanalytics.checkmate.core.gradle.plugin:9.0.12") } } apply(plugin = "com.redpillanalytics.checkmate.core")
- Applying plugins to all subprojects .