Search Gradle plugins

Version 0.16.2

Created 17 June 2022.

Configs for com.redmadrobot.publish

Using the plugins DSL:

plugins {
  id("com.redmadrobot.publish-config") version "0.16.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.redmadrobot.publish-config" version "0.16.2"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects