搜索 Gradle 插件

版本 1.0.7(最新版)

1.0.7

创建时间:2024年6月22日。

通过发布门户 API 发布到 Maven Central

使用 插件 DSL

plugins {
  id("net.covers1624.centralpublisher") version "1.0.7"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.covers1624:CentralPublisher:1.0.7")
  }
}

apply(plugin = "net.covers1624.centralpublisher")

使用 插件 DSL

plugins {
  id "net.covers1624.centralpublisher" version "1.0.7"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.covers1624:CentralPublisher:1.0.7"
  }
}

apply plugin: "net.covers1624.centralpublisher"

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