Search Gradle plugins

Version 0.18.1 (latest)

Created 18 April 2023.

Defaults for Kotlin projects

Using the plugins DSL:

plugins {
  id("com.redmadrobot.kotlin-library") version "0.18.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.redmadrobot.build:infrastructure-kotlin:0.18.1")
  }
}

apply(plugin = "com.redmadrobot.kotlin-library")

Using the plugins DSL:

plugins {
  id "com.redmadrobot.kotlin-library" version "0.18.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.redmadrobot.build:infrastructure-kotlin:0.18.1"
  }
}

apply plugin: "com.redmadrobot.kotlin-library"

Learn how to apply plugins to subprojects