You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "W. Sean Hennessy" <sh...@goldenhourdata.com> on 2004/06/30 01:06:20 UTC

question:maven-genapp-plugin\plugin.jelly

given that one modifies the 
#template.properties
maven.genapp.repackage=${src-dir-nm},${tst-dir-nm}

and that if one should insert a 
     <ant:echoproperties destfile="maven-genapp.runtime.properties" failonerror="false" />
to expose said properties such as
src-dir-nm=alt.srcdirnm
 
why is it that when plugin.jelly gets around to parsing the "maven.genapp.repackage" value pair which references said
property..
<!-- plugin.jelly:125 -->
      <u:tokenize var="maven.genapp.repackage.split" delim=",">${maven.genapp.repackage}</u:tokenize>
it is not available as an expanded property as one would expect?
 
returns ${src-dir-nm} and not "alt.srcdirnm"