搜索 Gradle 插件

版本 0.0.2(最新版)

0.0.2

创建于 2024 年 8 月 8 日。

用于管理 Maven Central 自动发布的 Gradle 插件

使用 plugins DSL

plugins {
  id("com.moengage.plugin.maven.publish") version "0.0.2"
}

使用 旧版插件应用

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

apply(plugin = "com.moengage.plugin.maven.publish")

使用 plugins DSL

plugins {
  id "com.moengage.plugin.maven.publish" version "0.0.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.moengage:plugin:0.0.2"
  }
}

apply plugin: "com.moengage.plugin.maven.publish"

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