Search Gradle plugins

Version 0.7.0

Created 25 April 2023.

NEOMO conventions for kotlin (ktlint, kotest, mockk)

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects