Search Gradle plugins

Version 0.2

Created 18 November 2022.

NEOMO conventions for kotlin (ktlint, kotest, mockk)

Using the plugins DSL:

plugins {
  id("com.neomo.conventions.kotlin") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.neomo.conventions:gradle-conventions:0.2")
  }
}

apply(plugin = "com.neomo.conventions.kotlin")

Using the plugins DSL:

plugins {
  id "com.neomo.conventions.kotlin" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.neomo.conventions:gradle-conventions:0.2"
  }
}

apply plugin: "com.neomo.conventions.kotlin"

Learn how to apply plugins to subprojects