gpt4 book ai didi

android - 使用 AAR 和源 JAR 将 Android 库发布到 Maven

转载 作者:IT王子 更新时间:2023-10-28 23:51:06 28 4
gpt4 key购买 nike

有人可以告诉我如何使用 maven-publish Gradle 插件来发布带有 AAR 和源 jar 的 com.android.library 项目/模块吗?我可以使用旧的 maven 插件来做到这一点 - 但我想使用新的 maven-publish 插件。

最佳答案

当前答案

Android Gradle Plugin 7.1现在可以很简单地做到这一点,不需要任何复杂的脚本。 AGP 现在还处理创建源和 javadocs jar。

您不需要任何单独的脚本,只需将所有内容写入模块的 build.gradle 文件即可:

plugins {
...
id 'maven-publish'
}
android {
...
publishing {
singleVariant("release") {
// if you don't want sources/javadoc, remove these lines
withSourcesJar()
withJavadocJar()
}
}
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId 'com.example'
artifactId 'mylibrary'
version = android.defaultConfig.versionName // or manually '1.0'
}
}
}
}

另请参阅:https://developer.android.google.cn/studio/build/maven-publish-plugin


旧答案

2020 年 3 月 3 日更新:

自 Android Studio 3.6 发布以来,在 Android Gradle 插件 3.6.0(及更高版本)中实现了对构建 AAR(甚至是 APK 和 AAB)的支持。

我们不再需要处理 XML 依赖和自己的东西了。

这是我为 Android Studio 3.6.0 更新的 Gist:https://gist.github.com/Robyer/a6578e60127418b380ca133a1291f017

来自 gist 的代码:

apply plugin: 'maven-publish'

task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
android.libraryVariants.all { variant ->
if (variant.name == 'release') {
owner.classpath += variant.javaCompileProvider.get().classpath
}
}
exclude '**/R.html', '**/R.*.html', '**/index.html'
}

task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
archiveClassifier.set('javadoc')
from androidJavadocs.destinationDir
}

task androidSourcesJar(type: Jar) {
archiveClassifier.set('sources')
from android.sourceSets.main.java.srcDirs
}

// Because the components are created only during the afterEvaluate phase, you must
// configure your publications using the afterEvaluate() lifecycle method.
afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
// Applies the component for the release build variant.
from components.release

// Adds javadocs and sources as separate jars.
artifact androidJavadocsJar
artifact androidSourcesJar

// You can customize attributes of the publication here or in module's build.gradle file (if you save this as script and include it build.gradle file, then you can just replicate this whole block there only with changed fields).
//groupId = 'com.example'
//artifactId = 'custom-artifact'
version = android.defaultConfig.versionName // or just '1.0'
}
}
}
}

旧答案:

这是我根据其他答案改进的解决方案。

要点: https://gist.github.com/Robyer/a6578e60127418b380ca133a1291f017

其他答案的变化:

  • 改变了 classifier - 它必须是 "sources" (not "source")
  • 处理依赖关系
    • 还支持 @aartransitive: false。在这种情况下,我们在 POM 中设置排除以忽略此依赖项的所有传递依赖项。

    • 还支持对依赖项的自定义排除规则,例如:

        compile('com.example:something:1.0', {
      exclude group: 'com.exclude.this', module: 'some-module'
      })
  • 不需要手动指定 Artifact 路径。

更新日志:

  • 27.3.2018 - 在新 Gradle 中添加了对 api/实现 依赖项的支持
  • 23.11.2018 - 将 bundleRelease 重命名为 bundleReleaseAar,因为它在新 Gradle 中已更改(参见 this answer)
  • 23.11.2018 - 将 getAllDependencies 更改为 getDependencies 以修复重复的结果条目(如我的 Gist 评论中所述)。
  • 23.04.2019 - 包裹在 project.afterEvaluate{...} 中,为新的 Gradle 修复它。

apply plugin: 'maven-publish'

task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
android.libraryVariants.all { variant ->
if (variant.name == 'release') {
owner.classpath += variant.javaCompile.classpath
}
}
exclude '**/R.html', '**/R.*.html', '**/index.html'
}

task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
classifier = 'javadoc'
from androidJavadocs.destinationDir
}

task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
}

project.afterEvaluate {
publishing {
publications {
maven(MavenPublication) {
//groupId 'cz.example'
//artifactId 'custom-artifact'
//version = android.defaultConfig.versionName

artifact bundleReleaseAar
artifact androidJavadocsJar
artifact androidSourcesJar

pom.withXml {
final dependenciesNode = asNode().appendNode('dependencies')

ext.addDependency = { Dependency dep, String scope ->
if (dep.group == null || dep.version == null || dep.name == null || dep.name == "unspecified")
return // ignore invalid dependencies

final dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', dep.group)
dependencyNode.appendNode('artifactId', dep.name)
dependencyNode.appendNode('version', dep.version)
dependencyNode.appendNode('scope', scope)

if (!dep.transitive) {
// If this dependency is transitive, we should force exclude all its dependencies them from the POM
final exclusionNode = dependencyNode.appendNode('exclusions').appendNode('exclusion')
exclusionNode.appendNode('groupId', '*')
exclusionNode.appendNode('artifactId', '*')
} else if (!dep.properties.excludeRules.empty) {
// Otherwise add specified exclude rules
final exclusionNode = dependencyNode.appendNode('exclusions').appendNode('exclusion')
dep.properties.excludeRules.each { ExcludeRule rule ->
exclusionNode.appendNode('groupId', rule.group ?: '*')
exclusionNode.appendNode('artifactId', rule.module ?: '*')
}
}
}

// List all "compile" dependencies (for old Gradle)
configurations.compile.getDependencies().each { dep -> addDependency(dep, "compile") }
// List all "api" dependencies (for new Gradle) as "compile" dependencies
configurations.api.getDependencies().each { dep -> addDependency(dep, "compile") }
// List all "implementation" dependencies (for new Gradle) as "runtime" dependencies
configurations.implementation.getDependencies().each { dep -> addDependency(dep, "runtime") }
}
}
}
}
}

关于android - 使用 AAR 和源 JAR 将 Android 库发布到 Maven,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26874498/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com