搜索Gradle插件

版本 0.0.14 (最新)

0.0.14

创建于 2022年4月12日。

简化将Android库发布到Maven中心的插件,有关如何使用请访问 https://github.com/hanlyjiang/android-libraries/blob/master/gradlePlugins/doc/AndroidMavenPubPlugin使用说明.md。

使用 插件DSL

plugins {
  id("com.github.hanlyjiang.android_maven_pub") version "0.0.14"
}

使用 旧式插件应用

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

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

使用 插件DSL

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

使用 旧式插件应用

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

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

了解如何将插件应用到子项目中