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
Add this plugin to your build using the plugins DSL:
plugins {
id("tz.co.asoft.applikation") version "1.4.18"
}
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.4.18") }
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.4.18") } } apply(plugin = "tz.co.asoft.applikation")
- Applying plugins to all subprojects .