org.uulib.reckon
Owner:
Rowan Lonsdale
Pluing to add UULIB Reckon functionality to Gradle builds
https://github.com/uulib/reckon
Version 0.1.0-alpha.2 (latest)
Created 03 November 2017.
Pluing to add UULIB Reckon functionality to Gradle builds
Using the plugins DSL:
plugins {
id("org.uulib.reckon") version "0.1.0-alpha.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.uulib.reckon:reckon-gradle-plugin:0.1.0-alpha.2")
}
}
apply(plugin = "org.uulib.reckon")
Using the plugins DSL:
plugins {
id "org.uulib.reckon" version "0.1.0-alpha.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.uulib.reckon:reckon-gradle-plugin:0.1.0-alpha.2"
}
}
apply plugin: "org.uulib.reckon"