The root cause is the <arg line> below:
<java classname="org.icefaces.ace.generator.xmlbuilder.FacesConfigMerge" classpathref="compile.run.classpath" fork="true" classpath="$
{build}
">
<arg value="$
{generator.faces-config.host}
" />
<arg line="$
{generator.faces-config.merge}
" />
<arg value="$
{generator.faces-config.output}
" />
</java>
The use of <arg line> caused the space in the Jenkins project name
"ICEmobile 1.2.0" to be parsed as multiple generator merge files
"ICEmobile" and "1.2.0".
build.xml has been modified to use <arg value>.
The root cause is the <arg line> below:
<java classname="org.icefaces.ace.generator.xmlbuilder.FacesConfigMerge" classpathref="compile.run.classpath" fork="true" classpath="$
{build}">
{generator.faces-config.host}<arg value="$
" />
{generator.faces-config.merge}<arg line="$
" />
{generator.faces-config.output}<arg value="$
" />
</java>
The use of <arg line> caused the space in the Jenkins project name
"ICEmobile 1.2.0" to be parsed as multiple generator merge files
"ICEmobile" and "1.2.0".
build.xml has been modified to use <arg value>.