Search Gradle plugins

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "dev.clojurephant.clojure-base"

Learn how to apply plugins to subprojects