nebula.nebula-clojure
Owner: Nebula Plugins
Small wrapper around clojuresque to leave out Clojars
https://github.com/nebula-plugins/nebula-clojure-plugin
Version 2.2.0 (latest)
2.2.0
Created 23 February 2015.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Using the plugins DSL:
plugins {
id("nebula.nebula-clojure") version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-clojure-plugin:2.2.0")
}
}
apply(plugin = "nebula.nebula-clojure")
Using the plugins DSL:
plugins {
id "nebula.nebula-clojure" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-clojure-plugin:2.2.0"
}
}
apply plugin: "nebula.nebula-clojure"