Search Gradle plugins

Version 1.1.1 (latest)

1.1.1

Created 23 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.pkmerboot-central-publisher") version "1.1.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.gitee.pkmer.pkmerboot-central-publisher" version "1.1.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects