tech.yanand.maven-central-publish
Owner: Richard Zhang
A plugin that allows you to publish repositories to the Maven Central Portal (new publish process)
https://github.com/yananhub/flying-gradle-plugin
Sources: https://github.com/yananhub/flying-gradle-plugin.git
Version 1.3.0 (latest)
1.3.0
Created 16 November 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.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.yanand.gradle:maven-central-publish:1.3.0")
}
}
apply(plugin = "tech.yanand.maven-central-publish")
Using the plugins DSL:
plugins {
id "tech.yanand.maven-central-publish" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.yanand.gradle:maven-central-publish:1.3.0"
}
}
apply plugin: "tech.yanand.maven-central-publish"