Gradle Milestone 5 shows an error about a missing artifact * # *! *. *

How can I solve 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: * # *! *. *
+5
source share
2 answers

Passed after upgrading to gradle stage 6 and after ... not sure what caused it. I checked for empty dependencies, as Ben suggested, but that is not the case. In any case ... there is a problem with some error that has just been fixed.

0
source

I had this problem because I imported:

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

I had to import:

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

, - , - . M3, , , Maven.

+3

All Articles