搜索Gradle插件

com.cursive-ide.clojure

所有者: Cursive

编译Clojure代码并运行测试

来源:https://github.com/cursive-ide/gradle-clojure

版本 1.1.0 (最新版本)

1.1.0

创建于2016年10月27日。

编译Clojure代码并运行测试

使用插件DSL

plugins {
  id("com.cursive-ide.clojure") version "1.1.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.cursive-ide:gradle-clojure:1.1.0")
  }
}

apply(plugin = "com.cursive-ide.clojure")

使用插件DSL

plugins {
  id "com.cursive-ide.clojure" version "1.1.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.cursive-ide:gradle-clojure:1.1.0"
  }
}

apply plugin: "com.cursive-ide.clojure"

学习如何将插件应用于子项目