DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13137>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13137

Semicolon as path separator.

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|Normal                      |Enhancement



------- Additional Comments From [EMAIL PROTECTED]  2002-10-02 06:39 -------
OK, there are newlines in your path attribute, but if you say they because of
this box ...

Things that should work:

<arg
path="${project.destdir.felles}/ekompfellesrutiner.jar;${project.destdir.tarifferingfelles}/tarifferingfellesEJB.jar;${project.destdir.tarifferingbil}\tarifferingbilEJB2.jar"/>

no whitespace at all, that is important.

The more anty way:

<path id="whatever">
  <pathelement location="${project.destdir.felles}/ekompfellesrutiner.jar"/>
  <pathelement
location="${project.destdir.tarifferingfelles}/tarifferingfellesEJB.jar"/>
  <pathelement 
location="${project.destdir.tarifferingbil}\tarifferingbilEJB2.jar"/>
</path>

<property name="whatever-as-property" refid="whatever"/>

outside of your <exec> (no semicolon required, quite the opposite) and then
within your <exec>

<arg path="${whatever-as-property}"/>

We should keep this report as an enhancement request for a new attribute to
arg that removes the need for the intermediate property.

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

Reply via email to