com.neomo.conventions.kotlin
Owner:
Benedikt Arnold
NEOMO conventions for kotlin (ktlint, kotest, mockk)
https://github.com/neomocom/gradle-conventions
Version 0.8.0 (latest)
Created 15 May 2023.
NEOMO conventions for kotlin (ktlint, kotest, mockk)
Using the plugins DSL:
plugins {
id("com.neomo.conventions.kotlin") version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.neomo.conventions:gradle-conventions:0.8.0")
}
}
apply(plugin = "com.neomo.conventions.kotlin")
Using the plugins DSL:
plugins {
id "com.neomo.conventions.kotlin" version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.neomo.conventions:gradle-conventions:0.8.0"
}
}
apply plugin: "com.neomo.conventions.kotlin"