com.moengage.plugin.maven.publish
Owner: MoEngage Inc
Gradle plugin for managing maven central auto release
https://github.com/moengage/gradle-maven-publish-plugin/
Sources: https://github.com/moengage/gradle-maven-publish-plugin/
Version 0.0.2 (latest)
0.0.2
Created 08 August 2024.
Gradle plugin for managing maven central auto release
Using the plugins DSL:
plugins {
id("com.moengage.plugin.maven.publish") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.moengage:plugin:0.0.2")
}
}
apply(plugin = "com.moengage.plugin.maven.publish")
Using the plugins DSL:
plugins {
id "com.moengage.plugin.maven.publish" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.moengage:plugin:0.0.2"
}
}
apply plugin: "com.moengage.plugin.maven.publish"