Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("tz.co.asoft.library") version "1.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tz.co.asoft:foundation-plugins:1.5.0")
      }
    }
    
    apply(plugin = "tz.co.asoft.library")
  • Applying plugins to all subprojects .