搜索Gradle插件

com.cdsap.talaiot.plugin.influxdb

简单且可扩展的插件,用于跟踪Gradle项目中任务和构建时间。

https://github.com/cdsap/Talaiot

来源:https://github.com/cdsap/Talaiot

版本 1.4.2 (最新版)

1.4.2

创建于 2021年3月7日。

此插件版本将不再解决,因为JCenter将成为永久重定向到Maven Central,因为它仅使用在JCenter中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Talaiot, InfluxDb Plugin, 简单且可扩展的插件,用于跟踪Gradle项目中任务和构建时间。

使用插件DSL

plugins {
  id("com.cdsap.talaiot.plugin.influxdb") version "1.4.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.cdsap.talaiot.plugin:influxdb:1.4.2")
  }
}

apply(plugin = "com.cdsap.talaiot.plugin.influxdb")

使用插件DSL

plugins {
  id "com.cdsap.talaiot.plugin.influxdb" version "1.4.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.cdsap.talaiot.plugin:influxdb:1.4.2"
  }
}

apply plugin: "com.cdsap.talaiot.plugin.influxdb"

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