搜索 Gradle 插件

版本 1.1.1 (最新)

1.1.1

创建于 2024年7月7日。

一个允许您将仓库发布到 Maven Central 门户(新发布流程)的插件

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

学习如何将插件应用到子项目中