reset password
Author Message
p0941
Posts: 95
Posted 17:18 May 20, 2010 |

I add on my existing build.xml a new target: 

<target name="zip" depends="abc">  

<zip destfile="./abc.zip" 
       basedir="."          
       excludes="...."
/>
</target>
  

But it doesn't run this target and I even can't see the target name in the list in the eclipse builder/Target/Auto build.  

Thanks for any suggestion. 

cysun
Posts: 2935
Posted 17:45 May 20, 2010 |

The mystery is that this target depends on another target called "abc", which I guess does not exist.

p0941
Posts: 95
Posted 17:46 May 20, 2010 |

The "abc" in my build.xml is "build"

cysun
Posts: 2935
Posted 17:49 May 20, 2010 |

Then it's truely a mystery. :)

p0941
Posts: 95
Posted 17:55 May 20, 2010 |

Maybe I should change my question into: In what situation the build.xml may not update (refresh) ?  Because obviously no matter what I do, it doesn't reflect in the building result.  Never seen this before.

p0941
Posts: 95
Posted 18:12 May 20, 2010 |

No problem now, I edit the wrong one.  I am working on different projects.  Thank you and sorry for your time.