搜索 Gradle 插件

版本 0.6.7 (最新版本)

0.6.7

创建于 2024 年 8 月 4 日。

标记模块为要发布到 Maven 中央的模块。

使用 插件 DSL

plugins {
  id("com.github.rahulsom.waena.published") version "0.6.7"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("waena:plugin:0.6.7")
  }
}

apply(plugin = "com.github.rahulsom.waena.published")

使用 插件 DSL

plugins {
  id "com.github.rahulsom.waena.published" version "0.6.7"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "waena:plugin:0.6.7"
  }
}

apply plugin: "com.github.rahulsom.waena.published"

了解如何将插件应用于子项目