Search Gradle plugins

io.github.cdsap.talaiot.plugin.influxdb

Talaiot, InfluxDb Plugin, simple and extensible plugin to track task and build times in your Gradle Project.

https://github.com/cdsap/Talaiot

Sources: https://github.com/cdsap/Talaiot

Version 1.5.0

Created 28 April 2021.

Talaiot, InfluxDb Plugin, simple and extensible plugin to track task and build times in your Gradle Project.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects