gpt4 book ai didi

maven - 如何在具有相互依赖关系的多模块 Android Gradle 项目中设置依赖关系?

转载 作者:行者123 更新时间:2023-12-03 13:35:12 27 4
gpt4 key购买 nike

问题

如何在 Android Gradle 项目中设置模块的依赖关系,其中模块相互依赖,以便我可以一次部署所有模块的新快照或发布版本的构建?

项目设置

我有一个由 2 个模块组成的项目:lib-core 和 lib-help,其中 lib-help 取决于 lib-core。我想将 lib-core 和 lib-help 分别发布到 Maven Central,以便 lib-help 的 pom 文件使用正确的版本指定对 lib-core 的依赖。

项目结构如下:

/my-project-name
|
|--/lib-core
| |-- build.gradle
| |-- gradle.properties
|
|--/lib-help
| |-- build.gradle
| |-- gradle.properties
|
|-- build.gradle
|-- gradle.properties
|-- settings.gradle
|-- gradle-mvn-push.gradle

项目配置文件如下,仅显示相关部分(根据我的判断):

settings.gradle :
include ':lib-core', ':lib-help'

gradle.properties :
GROUP=com.company
VERSION=5.0.0-SNAPSHOT

gradle-mvn-push.gradle :
apply plugin: 'maven'

afterEvaluate { project ->
uploadArchives {
repositories {
mavenDeployer {
// GROUP is defined in <root>/gradle.properties
pom.groupId = GROUP
// ARTIFACT is defined in <root>/<module>/gradle.properties
pom.artifactId = ARTIFACT
// VERSION is defined in <root>/gradle.properties
pom.version = VERSION
}
}
}
}

// Contains a lot more to fill in other meta-data like project name,
// developer name, github url, javadoc, signing of the artifacts, etc, etc..

lib-core/gradle.properties :
ARTIFACT=my-lib-core

lib-core/build.gradle :
apply plugin: 'com.android.library'

// Contains more code to configure the android stuff, not relevant for this question

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

apply from: rootProject.file('gradle-mvn-push.gradle')

库帮助/gradle.properties :
ARTIFACT=my-lib-help

库帮助/build.gradle :
apply plugin: 'com.android.library'

// Contains more code to configure the android stuff, not relevant for this question

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':lib-core')
}

apply from: rootProject.file('gradle-mvn-push.gradle')

问题

当我运行 gradlew clean :lib-core:uploadArchives :lib-help:uploadArchives ,一切都编译得很好,并且上传被推送到正确的存储库。在 Nexus Repository Manager 中,我可以看到具有正确名称、版本、签名等的两个模块的 Artifact ,但是生成的 pom.xml 中 lib-help 对 lib-core 的依赖是错误的。它使用项目名称作为 groupId,模块名称作为 artifactId 和未指定的版本名称:
<dependency>
<groupId>my-project-name</groupId>
<artifactId>lib-core</artifactId>
<version>unspecified</version>
<scope>compile</scope>
</dependency>

因此,使用 lib-help 作为依赖项的项目无法解决 lib-core 依赖项。 lib-help 的 pom.xml 中应该存在的正确值是 groupId=com.company、artifactId=my-lib-core 和 version=5.0.0-SNAPSHOT。

为了解决这个问题,我想我会在 lib-help 中使用 maven 依赖项,而不是模块依赖项,如下所示:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.company:my-lib-core:' + VERSION
}

自然,在执行 lib-core 的 uploadArchives 命令之前,此版本不存在,但 gradle 想要在开始执行任何给定命令之前解决所有模块的依赖关系。因此,它无法解决此依赖关系,并在配置 gradle 项目时出现错误退出。现在,我可以通过临时将 lib-help 的依赖项设置为 project(':lib-core') 来解决这个问题。 ,然后释放lib-core,然后将lib-help的依赖调整为 'com.company:my-lib-core:5.0.0-SNAPSHOT' ,然后释放 lib-help,但这似乎不是正确的方法。它会引起人为错误(如果我不小心增加了 to uploadArchives 命令之间的版本号怎么办?),并且需要几个手动的、严格有序的步骤。

问题(重复)

如何在 Android Gradle 项目中设置模块的依赖关系,其中模块相互依赖,以便我可以一次部署所有模块的新快照或发布版本的构建? (例如,但不一定,使用命令 gradlew clean :lib-core:uploadArchives :lib-help:uploadArchives )

最佳答案

如果在上传之前重写 POM,则可以保留本地项目依赖项 (compile project(':core')):

afterEvaluate { project ->
uploadArchives {
repositories {
mavenDeployer {
// ... other config here ...

pom.whenConfigured { pom ->
pom.dependencies.forEach { dep ->
if (dep.getVersion() == "unspecified") {
dep.setGroupId(GROUP)
dep.setVersion(VERSION_NAME)
}
}
}
}
}
}
}

这是一个工作项目的示例: https://github.com/hannesstruss/WindFish

关于maven - 如何在具有相互依赖关系的多模块 Android Gradle 项目中设置依赖关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37250675/

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