Search Gradle plugins

com.github.vadeg.exhibitor

Owner: Vadeg

Exhibitor plugin allows to update Zookeeper settings using Exhibitor API

https://github.com/vadeg

Sources: https://github.com/vadeg/gradle-exhibitor-plugin

Version 1.0.1 (latest)

Created 01 July 2017.

Exhibitor plugin allows to update Zookeeper settings using Exhibitor API

Using the plugins DSL:

plugins {
  id("com.github.vadeg.exhibitor") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.vadeg:gradle-exhibitor-plugin:1.0.1")
  }
}

apply(plugin = "com.github.vadeg.exhibitor")

Using the plugins DSL:

plugins {
  id "com.github.vadeg.exhibitor" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.vadeg:gradle-exhibitor-plugin:1.0.1"
  }
}

apply plugin: "com.github.vadeg.exhibitor"

Learn how to apply plugins to subprojects