Search Gradle plugins

dev.icerock.gradle.talaiot

Wrapper for https://github.com/cdsap/Talaiot with predefined configuration for IceRock projects analytics

https://github.com/icerockdev/icerock-talaiot-config-plugin

Sources: https://github.com/icerockdev/icerock-talaiot-config-plugin

Version 3.0.1

Created 11 June 2021.

Wrapper for https://github.com/cdsap/Talaiot with predefined configuration for IceRock projects analytics

Using the plugins DSL:

plugins {
  id("dev.icerock.gradle.talaiot") version "3.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.icerock.gradle:icerock-talaiot-config:3.0.1")
  }
}

apply(plugin = "dev.icerock.gradle.talaiot")

Using the plugins DSL:

plugins {
  id "dev.icerock.gradle.talaiot" version "3.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.icerock.gradle:icerock-talaiot-config:3.0.1"
  }
}

apply plugin: "dev.icerock.gradle.talaiot"

Learn how to apply plugins to subprojects