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
Using the plugins DSL:
plugins {
id("tz.co.asoft.library") version "1.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tz.co.asoft:foundation-plugins:1.5.3")
}
}
apply(plugin = "tz.co.asoft.library")
Using the plugins DSL:
plugins {
id "tz.co.asoft.library" version "1.5.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tz.co.asoft:foundation-plugins:1.5.3"
}
}
apply plugin: "tz.co.asoft.library"