If I write this in my maven.xml:
] <goal name="blah"><echo>${pom.id}</echo></goal>
I get:
]$ maven blah
]blah:
] [echo] mp-util:mp-util
My project.xml has this in it:
] <!-- a unique name for this project -->
] <id>mp-util</id>
I definitely expected pom.id to give me just "mp-util", instead of
"mp-util:mp-util". Why are my expectations wrong?
I can fix it:
] <j:set var="id" value="${pom.id}" />
] <j:set var="id" value="${id.substring(0,id.indexOf(':'))}" />
] <echo>id = ${id}</echo>
but I don't get it. Thanks for clues.
John
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]