Search Gradle plugins

Version 0.16.1

Created 17 June 2022.

Configs for com.redmadrobot.kotlin-library

Using the plugins DSL:

plugins {
  id("com.redmadrobot.kotlin-config") version "0.16.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.redmadrobot.kotlin-config" version "0.16.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects