Gradle Milestone 5 显示有关缺少工件的错误 *#*!*.*

发布于 2024-12-13 06:28:05 字数 177 浏览 0 评论 0原文

升级到 Milestone 5 后,如何解决在 Gradle 中看到的此错误:

:nodes-all:war
:: problems summary ::
:::: ERRORS
    a required artifact is not listed by module descriptor: *#*!*.*

How can I resolved this error that I see in Gradle after upgrading to Milestone 5:

:nodes-all:war
:: problems summary ::
:::: ERRORS
    a required artifact is not listed by module descriptor: *#*!*.*

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素衣风尘叹 2024-12-20 06:28:05

我遇到这个问题是因为我正在导入:

compile 'com.googlecode.linkedin-j:linkedin-j:1.0.416'

我应该一直导入:

compile 'com.googlecode.linkedin-j:linkedin-j-core:1.0.416'

这里的区别是第一个是一个父项目,实际上并不包含它自己的任何罐子。如果我降级到 M3,它不会在屏幕上显示任何警告,但真正的解决方法是指向 Maven 存储库中的正确 jar。

I had this problem because I was importing:

compile 'com.googlecode.linkedin-j:linkedin-j:1.0.416'

I should have been importing:

compile 'com.googlecode.linkedin-j:linkedin-j-core:1.0.416'

The difference here is that the first is a parent project not actually containing any jars of its own. If I downgraded to M3 it didn't spit any warnings on to the screen, but the real fix was to point at the right jar in the Maven repository.

不疑不惑不回忆 2024-12-20 06:28:05

升级到 gradle 里程碑 6 及之后,它就消失了......不知道是什么原因造成的。我按照本的建议检查了空依赖项,但事实并非如此。无论如何...解决一些刚刚修复的错误。

It's gone after upgrading to gradle milestone 6 and after... not sure what caused it. I checked for empty dependencies as Ben suggested but that wasn't it. Anyways... problem some bug that just got fixed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文