Re: Ant 1.6 installation

2008-09-08 Thread Jean-Rene David
There are lots of asterisks scattered all over your post, but: * Jon [2008.09.05 05:50]: > I'm trying to install Apache Ant 1.6 and have updated the following entries > within */etc/profile* to ensure that the installation is complete. > > JAVA_HOME=/usr/java/j2sdk1.4.2_18 > *ANT_HOME=/usr/local/

Re: rebuilds even if source not changed

2008-04-28 Thread Jean-Rene David
* Steve Loughran [2008.04.28 06:00]: > Jean-Rene David wrote: >> [...] >> But the task doesn't recurse the hierarchy >> to find the class file. It only looks in the >> "destdir" itself. So if I just: >> >> $ touch foo/Welcome.class > > y

rebuilds even if source not changed

2008-04-28 Thread Jean-Rene David
Hello, If a class is in a package, the target always rebuilds it even if the source hasn't changed. Here's a test case: $ ant -version Apache Ant version 1.7.0 compiled on December 13 2006 $ ls build.xml Welcome.java $ cat Welcome.java package My.Class; public class Welcome { public static

rebuilds even if source not changed

2008-04-27 Thread Jean-Rene David
Hello, When a class is in a package, the target always rebuilds it even if the source hasn't changed. Here's a test case: $ ant -version Apache Ant version 1.7.0 compiled on December 13 2006 $ ls build.xml Welcome.java $ cat Welcome.java package My.Class; public class Welcome { public stati