io.github.cdsap.talaiot.plugin.influxdb.TalaiotInfluxdbPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of influxdb Show documentation
Show all versions of influxdb Show documentation
is a simple and extensible plugin to track timing in your Gradle Project.
package io.github.cdsap.talaiot.plugin.influxdb
import io.github.cdsap.talaiot.Talaiot
import org.gradle.api.Plugin
import org.gradle.api.Project
class TalaiotInfluxdbPlugin : Plugin {
override fun apply(target: Project) {
Talaiot(
InfluxdbExtension::class.java,
InfluxdbConfigurationProvider(
target
)
).setUpPlugin(target)
}
}