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)
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
Add this plugin to your build using the plugins DSL:
plugins {
id("org.uulib.reckon") version "0.1.0-alpha.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.uulib.reckon:org.uulib.reckon.gradle.plugin:0.1.0-alpha.2") }
It can then be applied in the precompiled script plugin:plugins { id("org.uulib.reckon") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.uulib.reckon:org.uulib.reckon.gradle.plugin:0.1.0-alpha.2") } } apply(plugin = "org.uulib.reckon")
- Applying plugins to all subprojects .