[GRADLE-1617] Inconsistent behavior for MavenDeployer.addFilter on upload of multiple poms Created: 15/Jun/11  Updated: 10/Feb/17  Resolved: 10/Feb/17

Status: Resolved
Project: Gradle
Affects Version/s: 0.9.1, 1.0-milestone-3
Fix Version/s: None

Type: Bug
Reporter: Davide Cavestro Assignee: Unassigned
Resolution: Won't Fix Votes: 1

Attachments: Zip Archive Testproject.zip    

 Description   

I have a project containing both sources and tests and I want to separate main jars (code and sources) from test ones, uploading test artifacts with a dedicated artifact id (i.e. project name + '-tests').
To obtain this result I produced my tests jar with an appropriate classifier and added two filters to MavenDeployer to filter jars and change the artifact id for the pom containing the tests (based upon the classifier attribute value)

uploadArchives {
    //uploads archives to private maven-compatible repository
    repositories.mavenDeployer {
        repository (url: "${libs_releases_local}")  {
                authentication (userName: "${artifactory_user}", password: "${artifactory_pass}")
        }
        snapshotRepository (url: "${libs_snapshots_local}") {
                authentication (userName: "${artifactory_user}", password: "${artifactory_pass}")
        }
        addFilter('main') {artifact, file ->
                artifact.attributes['classifier'] != 'tests' //artifact whose clssifier attribute is NOT 'tests'
        }
        addFilter('tests') {artifact, file ->
                artifact.attributes['classifier'] == 'tests' //artifact whose clssifier attribute is 'tests'
        }
        pom('tests').artifactId = "${project.name}-tests"

This code produces unstable results... for instance sometimes I obtain this log

Uploading: org/myorg/Testproject/0.1/Testproject-0.1.jar to repository remote at ...
Transferring 2K from remote
Uploaded 2K
Uploading: org/myorg/Testproject/0.1/Testproject-0.1-sources.jar to repository remote at ...
Transferring 1K from remote
Uploaded 1K
Uploading: org/myorg/Testproject-tests/0.1/Testproject-tests-0.1.jar to repository remote at ...
Transferring 2K from remote
Uploaded 2K
Uploading: org/myorg/Testproject-tests/0.1/Testproject-tests-0.1-sources.jar to repository remote at ...
Transferring 1K from remote
Uploaded 1K
Uploading: org/myorg/Testproject-tests/0.1/Testproject-tests-0.1-tests.jar to repository remote at ...
Transferring 1K from remote
Uploaded 1K

while other times

Uploading: org/myorg/Testproject-tests/0.1/Testproject-tests-0.1-tests.jar to repository remote at ...
Transferring 1K from remote
Uploaded 1K
Uploading: org/myorg/Testproject/0.1/Testproject-0.1.jar to repository remote at ...
Transferring 2K from remote
Uploaded 2K
Uploading: org/myorg/Testproject/0.1/Testproject-0.1-tests.jar to repository remote at ...
Transferring 1K from remote
Uploaded 1K
Uploading: org/myorg/Testproject/0.1/Testproject-0.1-sources.jar to repository remote at ...
Transferring 1K from remote
Uploaded 1K

In practice the inclusion of jars seems not always related to the match of filter condition. In particular often only one pom/artifactId have the right jars, while the other have all the jars.

I'm attaching a test project.
PS: the need to upload tests jars with a different artifactId arised from the fact that the STS gradle integration seems to have problems supporting dependencies on multiple jars for the same project, i.e. given this deps

dependencies {
    compile 'org.myorg:Testproject:latest.release'
    testCompile 'org.myorg:Testproject:latest.release:tests'

it somewhat discards the first dep (maybe it's related to the fact that eclipse/sts uses the same classpath for tests and the main code, hence somewhat overwriting the two deps... I have to investigate further to understand if it's a bug of sts/gradle integration)



 Comments   
Comment by Davide Cavestro [ 16/Jun/11 ]

I forgot to specify you have to give a gradle uploadArchives command to trigger the upload and reproduce the issue (the same applies to Testproject.zip).
In the meantime I also filed STS-1838 for the STS issue I mentioned on the above PS.

Comment by Benjamin Muschko [ 15/Nov/16 ]

As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub.

We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to.

Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:

  • Checking that your issues contain requisite context, impact, behaviors, and examples as described in our published guidelines.
  • Leave a comment on the JIRA issue or open a new GitHub issue confirming that the above is complete.

We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle!

Comment by Benjamin Muschko [ 10/Feb/17 ]

Thanks again for reporting this issue. We haven't heard back from you after our inquiry from November 15th. We are closing this issue now. Please create an issue on GitHub if you still feel passionate about getting it resolved.

Generated at Wed Jun 30 12:00:07 CDT 2021 using Jira 8.4.2#804003-sha1:d21414fc212e3af190e92c2d2ac41299b89402cf.