Search Gradle plugins

Version 1.1.0 (latest)

1.1.0

Created 21 August 2024.

The plugin that allows you to publish artifacts to the Sonatype Maven Central Portal via the Central Portal.

Using the plugins DSL:

plugins {
  id("io.gitee.pkmer.sonatype-central-publisher") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.gitee.pkmer:central-publisher:1.1.0")
  }
}

apply(plugin = "io.gitee.pkmer.sonatype-central-publisher")

Using the plugins DSL:

plugins {
  id "io.gitee.pkmer.sonatype-central-publisher" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.gitee.pkmer:central-publisher:1.1.0"
  }
}

apply plugin: "io.gitee.pkmer.sonatype-central-publisher"

Learn how to apply plugins to subprojects