ca.stellardrift.opinionated.kotlin
Owner:
zml
Some basic configuration for Kotlin projects
https://github.com/zml2008/gradle-plugins
Sources: https://github.com/zml2008/gradle-plugins
Version 5.0.1 (latest)
Created 28 February 2022.
Some basic configuration for Kotlin projects
Using the plugins DSL:
plugins {
id("ca.stellardrift.opinionated.kotlin") version "5.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ca.stellardrift:gradle-plugin-opinionated-kotlin:5.0.1")
}
}
apply(plugin = "ca.stellardrift.opinionated.kotlin")
Using the plugins DSL:
plugins {
id "ca.stellardrift.opinionated.kotlin" version "5.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ca.stellardrift:gradle-plugin-opinionated-kotlin:5.0.1"
}
}
apply plugin: "ca.stellardrift.opinionated.kotlin"