Search Gradle plugins

Version 0.4.0-rc.2

Created 02 July 2018.

Clojure and ClojureScript language support for Gradle

Using the plugins DSL:

plugins {
  id("gradle-clojure.clojurescript") version "0.4.0-rc.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.gradle-clojure:gradle-clojure-plugin:0.4.0-rc.2")
  }
}

apply(plugin = "gradle-clojure.clojurescript")

Using the plugins DSL:

plugins {
  id "gradle-clojure.clojurescript" version "0.4.0-rc.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.gradle-clojure:gradle-clojure-plugin:0.4.0-rc.2"
  }
}

apply plugin: "gradle-clojure.clojurescript"

Learn how to apply plugins to subprojects