Hello,

Maybe ANT this way:

  <path id="build.path2">
         <path refid="emptypath">
   </path>

<for list="${reference}" param="ref">
   <sequential>
   <path id="build.path">
         <path refid="build.path2">
         <path refid="@{ref}">
   </path>

   <path id="build.path2">
         <path refid="build.path">
   </path>

   </sequential>
</for>


-- 
Jürgen Knuplesch  
-----Ursprüngliche Nachricht-----
Von: kleinfisch [mailto:[email protected]] 
Gesendet: Donnerstag, 9. Juli 2009 09:44
An: [email protected]
Betreff: ****SPAM**** for task inside path task


example:
i have a property as following defined:
<property name="reference" value="ref1,ref2,ref3"/> the count of value is 
dynamic.
the question is: how can i define the refid inside path with for task:
- Test 1:
<path id="build.path">
   <for list="${reference}" param="ref">
      <sequential>
         <path refid="@{ref}">
      </sequential>
   </for>
</path>
Result: failed, because "path" doesn't support the nested "for" element.

- Test 2:
<for list="${reference}" param="ref">
   <path id="build.path">
      <sequential>
         <path refid="@{ref}">
      </sequential>
   </path>
</for>
Result: only last value of "reference" is defined always, because the recent 
value of "reference" is always replaced by the next value of "reference".

Has anybody else an idea, "path" task with a loop definition?
--
View this message in context: 
http://www.nabble.com/for-task-inside-path-task-tp24405629p24405629.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to