Search Gradle plugins

Version 6.6.1

Created 15 March 2023.

Maven central publish configuration

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.maven-central-publish") version "6.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.turansky.kfc:kfc-gradle-plugin:6.6.1")
  }
}

apply(plugin = "io.github.turansky.kfc.maven-central-publish")

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.maven-central-publish" version "6.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.turansky.kfc:kfc-gradle-plugin:6.6.1"
  }
}

apply plugin: "io.github.turansky.kfc.maven-central-publish"

Learn how to apply plugins to subprojects