Search Gradle plugins

Version 0.3.0.40 (latest)

Created 23 October 2017.

The smartest, most easy to use dependency injection framework out there!

Using the plugins DSL:

plugins {
  id("com.github.wrdlbrnft.glue-meister") version "0.3.0.40"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.GlueMeister:plugin:0.3.0.40")
  }
}

apply(plugin = "com.github.wrdlbrnft.glue-meister")

Using the plugins DSL:

plugins {
  id "com.github.wrdlbrnft.glue-meister" version "0.3.0.40"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.GlueMeister:plugin:0.3.0.40"
  }
}

apply plugin: "com.github.wrdlbrnft.glue-meister"

Learn how to apply plugins to subprojects