[ https://issues.apache.org/jira/browse/GROOVY-8372?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16235187#comment-16235187 ]
ASF GitHub Bot commented on GROOVY-8372: ---------------------------------------- GitHub user erwa opened a pull request: https://github.com/apache/groovy/pull/626 GROOVY-8372: GrapeIvy downloads wrong artifact for non-default conf when artifact name is not the same as the module Ref: https://issues.apache.org/jira/browse/GROOVY-8372 You can merge this pull request into a Git repository by running: $ git pull https://github.com/erwa/groovy remove-conf-optional-check Alternatively you can review and apply these changes as the patch at: https://github.com/apache/groovy/pull/626.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #626 ---- commit 679d924169d9d14f11050666e445ec9105187f66 Author: Anthony Hsu <a...@linkedin.com> Date: 2017-11-02T05:04:14Z GROOVY-8372: GrapeIvy downloads wrong artifact for non-default conf when artifact name is not the same as the module ---- > GrapeIvy downloads wrong artifact for non-default conf when artifact name is > not the same as the module > ------------------------------------------------------------------------------------------------------- > > Key: GROOVY-8372 > URL: https://issues.apache.org/jira/browse/GROOVY-8372 > Project: Groovy > Issue Type: Bug > Affects Versions: 2.2.2, 3.0.0-alpha-1 > Reporter: Anthony Hsu > > In my Ivy repo, there exists the following directory with the following > contents: > {noformat} > com/example/foo/bar/1.2.3/ > bar-1.2.3.jar > bar-1.2.3.ivy > bar-qux-1.2.3.jar > {noformat} > In bar-1.2.3.ivy, the following conf and publication exist: > {noformat:title=bar-1.2.3.ivy} > ... > <configurations> > <conf name="qux"/> > ... > </configurations> > ... > <publications> > <artifact name="bar" type="jar" ext="jar" > conf="apiElements,archives,runtime,runtimeElements"/> > <artifact name="bar-qux" type="jar" ext="jar" conf="qux"/> > ... > </publications> > ... > {noformat} > When I try to use Grape to resolve bar-qux-1.2.3.jar by setting > * org = com.example.foo > * module = bar > * version = 1.2.3 > * conf = qux > bar-1.2.3.jar gets downloaded instead of bar-qux-1.2.3.jar. > This issue seems to be caused by GROOVY-6470. The correct jar > (bar-qux-1.2.3.jar) gets downloaded when using groovy-all-2.2.1, but the > wrong jar is downloaded when using groovy-all-2.2.2 and newer. -- This message was sent by Atlassian JIRA (v6.4.14#64029)