com.github.hanlyjiang.android_maven_pub
Owner: HanlyJiang
Plugin for simplify publishing android library to maven center
https://github.com/hanlyjiang/android-libraries/blob/master/gradlePlugins
Sources: https://github.com/hanlyjiang/android_maven_pub_plugin.git
Version 0.0.14 (latest)
0.0.14
Created 12 April 2022.
Plugin for simplify publishing android library to maven center,visit https://github.com/hanlyjiang/android-libraries/blob/master/gradlePlugins/doc/AndroidMavenPubPlugin使用说明.md for how to use.
Using the plugins DSL:
plugins {
id("com.github.hanlyjiang.android_maven_pub") version "0.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.hanlyjiang:gradlePlugins:0.0.14")
}
}
apply(plugin = "com.github.hanlyjiang.android_maven_pub")
Using the plugins DSL:
plugins {
id "com.github.hanlyjiang.android_maven_pub" version "0.0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.hanlyjiang:gradlePlugins:0.0.14"
}
}
apply plugin: "com.github.hanlyjiang.android_maven_pub"