com.moengage.plugin.maven.publish
所有者: MoEngage Inc
用于管理 Maven Central 自动发布的 Gradle 插件
https://github.com/moengage/gradle-maven-publish-plugin/
源代码:https://github.com/moengage/gradle-maven-publish-plugin/
使用 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"