dev.brella.kornea.settings
Owner: Izzy H.
Plugin for assisting with Kotlin development, especially dealing with Multi-Platform and Multi-Module projects.
https://github.com/UnderMybrella/kornea-gradle
Sources: https://github.com/UnderMybrella/kornea-gradle
Version 1.0.1 (latest)
1.0.1
Created 12 April 2023.
Plugin for assisting with Kotlin development, especially dealing with Multi-Platform and Multi-Module projects.
Using the plugins DSL:
plugins {
id("dev.brella.kornea.settings") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.brella:KorneaGradleSettings:1.0.1")
}
}
apply(plugin = "dev.brella.kornea.settings")
Using the plugins DSL:
plugins {
id "dev.brella.kornea.settings" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.brella:KorneaGradleSettings:1.0.1"
}
}
apply plugin: "dev.brella.kornea.settings"