Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.5
-
Fix Version/s: 1.6
-
Component/s: None
-
Labels:None
-
Environment:maven 1.0, plugin v1.5 (not in the jira version list)
-
Number of attachments :
Description
When bundling the ear, the plugin displays the type and the id of each item :
[echo] Bundling: jar - ant:ant
It would be nice to also include the version
[echo] Bundling: jar - ant:ant-1.5.4
Need to change line 82 of the plugin.jelly
from
<ant:echo>Bundling: ${dep.type} - ${dep.id}</ant:echo>
to
<ant:echo>Bundling: ${dep.type} - ${dep.id}.${dep.version}</ant:echo>
Done