Search Gradle plugins

Version 0.0.6

Created 01 July 2021.

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.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.hanlyjiang:gradlePlugins:0.0.6")
  }
}

apply(plugin = "com.github.hanlyjiang.android_maven_pub")

Using the plugins DSL:

plugins {
  id "com.github.hanlyjiang.android_maven_pub" version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.hanlyjiang:gradlePlugins:0.0.6"
  }
}

apply plugin: "com.github.hanlyjiang.android_maven_pub"

Learn how to apply plugins to subprojects