[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: | 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'). 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
while other times
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. 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). |
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:
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. |