org.uulib.reckon
Owner: Rowan Lonsdale
Pluing to add UULIB Reckon functionality to Gradle builds
https://github.com/uulib/reckon
Sources: https://github.com/uulib/reckon.git
Version 0.1.0-alpha.2 (latest)
0.1.0-alpha.2
Created 03 November 2017.
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
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"