tz.co.asoft.applikation
Owner: aSoft Ltd
Simple Plugins to Ease Library Development
https://github.com/aSoft-Ltd/foundation/tree/master/foundation-plugins
Sources: https://github.com/aSoft-Ltd/builders
Version 1.5.3 (latest)
Created 06 July 2022.
Simple Plugins to Ease Library Development
Add this plugin to your build using the plugins DSL:
plugins {
id("tz.co.asoft.applikation") version "1.5.3"
}
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("tz.co.asoft.applikation:tz.co.asoft.applikation.gradle.plugin:1.5.3") }
It can then be applied in the precompiled script plugin:plugins { id("tz.co.asoft.applikation") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tz.co.asoft.applikation:tz.co.asoft.applikation.gradle.plugin:1.5.3") } } apply(plugin = "tz.co.asoft.applikation")
- Applying plugins to all subprojects .