搜索Gradle插件

com.redpillanalytics.checkmate.obi

所有者: Stewart Bryson

Checkmate是一个为不自然支持持续集成的产品启用持续集成的解决方案。OBI插件为Oracle Business Intelligence启用CI/CD。

https://github.com/RedPillAnalytics/checkmate-obi

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

使用插件DSL

plugins {
  id("com.redpillanalytics.checkmate.obi") version "12.1.4"
}

使用旧插件应用

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

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

使用插件DSL

plugins {
  id "com.redpillanalytics.checkmate.obi" version "12.1.4"
}

使用旧插件应用

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

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

了解如何将插件应用于子项目