com.equisoft.standards.kotlin
Owner: Equisoft Inc.
Kotlin standards at Equisoft
https://www.github.com/kronostechnologies/standards
Sources: https://www.github.com/kronostechnologies/standards.git
Using the plugins DSL:
plugins {
id("com.equisoft.standards.kotlin") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.equisoft.standards:kotlin-standards-plugin:0.5.0")
}
}
apply(plugin = "com.equisoft.standards.kotlin")
Using the plugins DSL:
plugins {
id "com.equisoft.standards.kotlin" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.equisoft.standards:kotlin-standards-plugin:0.5.0"
}
}
apply plugin: "com.equisoft.standards.kotlin"