Search Gradle plugins

Version 1.2.0 (latest)

1.2.0

Created 20 August 2024.

A plugin that allows you to publish repositories to the Maven Central Portal (new publish process)

Using the plugins DSL:

plugins {
  id("tech.yanand.maven-central-publish") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.yanand.gradle:maven-central-publish:1.2.0")
  }
}

apply(plugin = "tech.yanand.maven-central-publish")

Using the plugins DSL:

plugins {
  id "tech.yanand.maven-central-publish" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.yanand.gradle:maven-central-publish:1.2.0"
  }
}

apply plugin: "tech.yanand.maven-central-publish"

Learn how to apply plugins to subprojects