I encountered a situation requiring to change a @{groupId}
which is a user property of maven-deploy-plugin
to a pathname for maven-antrun-plugin
.
<zip destfile="${project.build.directory}/${groupId}.zip"
basedir="${settings.localRepository}"
includes="${path?/to?/the?groupId?}/**/*"/>
How can I get a/b/c
from a ${groupId}
, say a.b.c
,