[GRADLE-851] archiveBaseName part in artifact's name is always in upper case Created: 14/Mar/10 Updated: 04/Jan/13 Resolved: 24/Nov/10 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 0.8 |
Fix Version/s: | 0.9-rc-1 |
Type: | Bug | ||
Reporter: | Zsolt Kúti | Assignee: | Hans Dockter |
Resolution: | Fixed | Votes: | 0 |
Description |
Despite using a lower case archiveBaseName, it is in upper case in the artifact's name. |
Comments |
Comment by Hans Dockter [ 02/Apr/10 ] |
Could you send us a test case where this is happening. I can't reproduce it. |
Comment by Zsolt Kúti [ 03/Apr/10 ] |
No wonder, because no issue exists... |
Comment by Hans Dockter [ 06/Apr/10 ] |
Thanks for figuring this out. Gradle could do a better job here though. If archivesBaseName would not be a global variable but attached to some context, such a typo could be figured out. For example: archives.baseName = ... // works fine archive.baseName = ... // would throw an exception archives.basesName = ... // would throw an exception |