Search Gradle plugins

com.cdsap.talaiot.plugin.elasticsearch

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.4.0

Created 22 November 2020.

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

Using the plugins DSL:

plugins {
  id("com.cdsap.talaiot.plugin.elasticsearch") version "1.4.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.cdsap.talaiot.plugin.elasticsearch" version "1.4.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects