You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd be happy to put up a PR with a bit of guidance. The maven coordinate string in the javadoc linked above seems to follow a different syntax than what is present in the tag. groupId:artifactId[:type[:scope]]:version while the tag looks to be groupId:artifactId[:type[:classifier]]:version without a scope.
The text was updated successfully, but these errors were encountered:
I am encountering this with a
java_export
that containsio.netty:netty-tcnative-boringssl-static
. I can provide a repo example if it helps.To reproduce, create a
java_export
with any/all of the following artifacts:The generated pom.xml contains the group, artifact, scope, and version, but is missing the classifier. What I would expect:
The
maven_coordinates
tag does contain the classifier, but theunpack_coordinates
function does not account for it: https://github.com/bazelbuild/rules_jvm_external/blob/master/private/rules/maven_utils.bzl#L7I'd be happy to put up a PR with a bit of guidance. The maven coordinate string in the javadoc linked above seems to follow a different syntax than what is present in the tag.
groupId:artifactId[:type[:scope]]:version
while the tag looks to begroupId:artifactId[:type[:classifier]]:version
without a scope.The text was updated successfully, but these errors were encountered: