Search Gradle plugins

Version 4.2.0

Created 30 November 2020.

Gradle plugin for grafana dashboards publication

Using the plugins DSL:

plugins {
  id("ru.yoomoney.tech.grafana-dashboard-plugin") version "4.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.yoomoney.tech:grafana-dashboard-plugin:4.2.0")
  }
}

apply(plugin = "ru.yoomoney.tech.grafana-dashboard-plugin")

Using the plugins DSL:

plugins {
  id "ru.yoomoney.tech.grafana-dashboard-plugin" version "4.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ru.yoomoney.tech:grafana-dashboard-plugin:4.2.0"
  }
}

apply plugin: "ru.yoomoney.tech.grafana-dashboard-plugin"

Learn how to apply plugins to subprojects