io.github.cdsap.talaiot.plugin.elasticsearch
Owner: Inaki Villar Algaba
Talaiot, Elastic Search 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 2.0.6 (latest)
2.0.6
Created 07 November 2024.
Talaiot, Elastic Search 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.elasticsearch") version "2.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.cdsap.talaiot.plugin:elastic-search-plugin:2.0.6")
}
}
apply(plugin = "io.github.cdsap.talaiot.plugin.elasticsearch")
Using the plugins DSL:
plugins {
id "io.github.cdsap.talaiot.plugin.elasticsearch" version "2.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.cdsap.talaiot.plugin:elastic-search-plugin:2.0.6"
}
}
apply plugin: "io.github.cdsap.talaiot.plugin.elasticsearch"