Have you tried:

<j:set var="classPath"
  value="${classPath}./lib/${dep.artifactId}.jar"/>

which is more compact. Or
<j:set var="classPath"
value="${classPath.toString().concat('./lib/ ').concat(dep.artifactId).concat('.jar')"/>

Remember... java under the hood!

paul

PS: .toString() only needed just to make sure classPath is actually a string.


Le 18 juil. 05, à 18:51, Grant Ingersoll a écrit :
<j:set var="classPath" value="${classPath +  './lib/' +
dep.artifactId + '.jar'}"/>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to