Search Gradle plugins

Version 0.13

Created 14 December 2021.

Defaults for Kotlin projects

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects