I’m currently writing a JaCoCo gradle plugin and have a dependency on the JaCoCo modules. Unfortunately, the pom for the modules specifies that the jar files have packaging “eclipse-plugin”. This appears to translate into a resolved dependency which, when printed, looks like:
Your analysis is essentially correct: thanks for pointing out IVY-899. However due to changes required to the pom parsing code, we’ve already forked the ivy code involved, so we shouldn’t need to wait for an ivy fix (we can do it ourselves).
Currently, Gradle has special handling for “pom”, “ejb”, “bundle” and “maven-plugin”; otherwise we just map the “packaging” value to the extension of the main artifact. Do you have any documentation on what are the allowable packaging values in maven, and how they should be mapped? I can’t find anything comprehensive.
From the maven docs, I don’t think there is a finite set of valid packaging values. The docs seem to indicate that new packaging types can be created along with plugins to handle those packaging types.
My idea was that in lieu of a plugin for a packaging type, I’d simply like to override the name mapping; in this case eclipse-plugin --> jar by setting classifier, type and extension.
From the link you provided, it seems like I can accomplish this by putting the following in my dependencies stanza:
I think this is a mailing list post explaining what they’re trying to accomplish, but it’s long and I can’t find a decent threaded version of the conversation.
There’s also {{jbi-component}} and {{jbi-shared-library}} suggested in IVY-899.
I might be wrong, but Maven seems to default to {{jar}} if {{}} isn’t specified in the dependency declaration. Would defaulting to {{jar}} for unknown packaging types cause problems with Gradle (or Ivy for that matter)?
Since GRADLE-2076 was resolved prior to the discovery / report of “orbit” packaging, I created a new issue GRADLE-2188 to cater for that particular case.