搜索Gradle插件

be.vbgn.ci-detect

所有者: Lars Vierbergen

此插件会检查它是否在一个持续集成服务器上运行,并为您提供访问构建元数据的功能。

https://github.com/vierbergenlars/ci-detect-gradle-plugin

来源: https://github.com/vierbergenlars/ci-detect-gradle-plugin

版本 0.5.0(最新版)

0.5.0

创建于2020年10月25日。

此插件会检查它是否在一个持续集成服务器上运行,并为您提供访问构建元数据的功能。

使用 插件DSL

plugins {
  id("be.vbgn.ci-detect") version "0.5.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("be.vbgn.gradle:ci-detect-plugin:0.5.0")
  }
}

apply(plugin = "be.vbgn.ci-detect")

使用 插件DSL

plugins {
  id "be.vbgn.ci-detect" version "0.5.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "be.vbgn.gradle:ci-detect-plugin:0.5.0"
  }
}

apply plugin: "be.vbgn.ci-detect"

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