搜索 Gradle 插件

版本 1.0.4 (最新版本)

1.0.4

创建于2020年9月21日。

用于使用 Maven 发布插件发布 Android (AAR) 库的插件

使用 插件 DSL

plugins {
  id("com.github.technoir42.aar-publish") version "1.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.technoir42:aar-publish-plugin:1.0.4")
  }
}

apply(plugin = "com.github.technoir42.aar-publish")

使用 插件 DSL

plugins {
  id "com.github.technoir42.aar-publish" version "1.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.technoir42:aar-publish-plugin:1.0.4"
  }
}

apply plugin: "com.github.technoir42.aar-publish"

学习如何将插件应用于子项目