문제

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: *#*!*.*
도움이 되었습니까?

해결책 2

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.

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top