Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.clojurephant.clojurescript") version "0.8.0-beta.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.clojurephant:clojurephant-plugin:0.8.0-beta.7")
      }
    }
    
    apply(plugin = "dev.clojurephant.clojurescript")
  • Applying plugins to all subprojects .