Search Gradle plugins

com.cdsap.talaiot.plugin.rethinkdb

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

Created 17 December 2020.

Talaiot, RethinkDb 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.rethinkdb") version "1.4.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.cdsap.talaiot.plugin.rethinkdb" version "1.4.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects