Search Gradle plugins

Using the plugins DSL:

plugins {
  id("dev.clojurephant.clojure") version "0.6.0-alpha.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.clojurephant:clojurephant-plugin:0.6.0-alpha.3")
  }
}

apply(plugin = "dev.clojurephant.clojure")

Using the plugins DSL:

plugins {
  id "dev.clojurephant.clojure" version "0.6.0-alpha.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.clojurephant:clojurephant-plugin:0.6.0-alpha.3"
  }
}

apply plugin: "dev.clojurephant.clojure"

Learn how to apply plugins to subprojects