Search Gradle plugins

dev.brella.kornea

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.1.5

Created 06 June 2022.

Plugin for assisting with Kotlin development, especially dealing with Multi-Platform and Multi-Module projects.

Using the plugins DSL:

plugins {
  id("dev.brella.kornea") version "1.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.brella:KorneaGradle:1.1.5")
  }
}

apply(plugin = "dev.brella.kornea")

Using the plugins DSL:

plugins {
  id "dev.brella.kornea" version "1.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.brella:KorneaGradle:1.1.5"
  }
}

apply plugin: "dev.brella.kornea"

Learn how to apply plugins to subprojects