gpt4 book ai didi

java - Gradle命令行错误,任务 ':..:jar'的执行失败

转载 作者:行者123 更新时间:2023-12-03 05:58:10 25 4
gpt4 key购买 nike

我试图用gradle进行命令行构建,并且在gradle.build文件中包含以下内容。

allprojects {
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
}

我不断收到此错误,很有趣,它试图在上层目录文件夹中构建我的jar。
FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':..:jar'.
> Failed to create directory '/home/jsiddharth/workspace/v2/working/mnoxbackendv2/build/libs'

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

我一评论
/*
allprojects {
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
*/

构建顺利,没有问题。你能帮我找出为什么会这样吗?我想兼容性与jar的创建无关吗?

Note : I need to build this jar with backward 1.7 compatibility since Android has still not migrated to 1.8.

最佳答案

如果您使用的是多项目,请尝试将插件和兼容性选项放在根build.gradle或设置中。

(请注意,它可能会迭代被认为是项目的内容,因此无法运行jar任务,您的项目结构可能是奇怪的或类似的东西)

您不需要使用allprojects {}项目迭代结束。

apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7

repositories{}
dependencies {}
etc{}

关于java - Gradle命令行错误,任务 ':..:jar'的执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43490910/

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