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