搜索 Gradle 插件

io.github.cdsap.talaiot.plugin.influxdb

Talaiot, InfluxDb Plugin, Gradle 项目中跟踪任务和构建时间的简单易扩展插件。

https://github.com/cdsap/Talaiot

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

版本 2.0.4(最新版本)

2.0.4

创建日期:2024年3月2日。

Talaiot, InfluxDb Plugin, Gradle 项目中跟踪任务和构建时间的简单易扩展插件。

使用 plugins DSL

plugins {
  id("io.github.cdsap.talaiot.plugin.influxdb") version "2.0.4"
}

使用 旧版本的插件应用程序

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

apply(plugin = "io.github.cdsap.talaiot.plugin.influxdb")

使用 plugins DSL

plugins {
  id "io.github.cdsap.talaiot.plugin.influxdb" version "2.0.4"
}

使用 旧版本的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.cdsap.talaiot.plugin:influxdb-plugin:2.0.4"
  }
}

apply plugin: "io.github.cdsap.talaiot.plugin.influxdb"

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