Search Gradle plugins

Version 0.0.14 (latest)

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"

Learn how to apply plugins to subprojects