tz.co.asoft.library
                  Owner:
                  
                    
                    aSoft Ltd
                  
                
A kotlin library plugin
https://github.com/aSoft-Ltd/foundation/tree/master/foundation-plugins
Sources: https://github.com/aSoft-Ltd/build-src
Add this plugin to your build using the plugins DSL:
plugins {
  id("tz.co.asoft.library") version "1.3.22"
}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.library:tz.co.asoft.library.gradle.plugin:1.3.22") }It can then be applied in the precompiled script plugin:plugins { id("tz.co.asoft.library") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tz.co.asoft.library:tz.co.asoft.library.gradle.plugin:1.3.22") } } apply(plugin = "tz.co.asoft.library")
- Applying plugins to all subprojects .