Re: Ant Dependency Management

2017-10-28 Thread R0b0t1
Ahh, sorry. I just found the "uptodate" directive. I've done: And all seems to be well. On Sat, Oct 28, 2017 at 8:19 PM, R0b0t1 wrote: > Hello, > > On Sat, Oct 28, 2017 at 6:34 PM, Matt Benson wrote: >> If you're referring to Java compilation, tools like Ant and Maven >> generally perform

Re: Ant Dependency Management

2017-10-28 Thread R0b0t1
Hello, On Sat, Oct 28, 2017 at 6:34 PM, Matt Benson wrote: > If you're referring to Java compilation, tools like Ant and Maven > generally perform incremental compilation unless explicitly forced to > do otherwise, such as by "cleaning" (deleting) existing classfiles > from a previous compilation

Re: Ant Dependency Management

2017-10-28 Thread Martin Gainty
if you need frequently referenced jars loaded into a "known place" take a look at repository management: Ivy: http://ant.apache.org/ivy/history/latest-milestone/tutorial/build-repository.html Building a repository | Apache Ivy

Re: Ant Dependency Management

2017-10-28 Thread Matt Benson
If you're referring to Java compilation, tools like Ant and Maven generally perform incremental compilation unless explicitly forced to do otherwise, such as by "cleaning" (deleting) existing classfiles from a previous compilation. HTH, Matt On Sat, Oct 28, 2017 at 5:17 PM, R0b0t1 wrote: > Hello

Re: Ant Dependency Management

2017-10-28 Thread Earl Hood
On Sat, Oct 28, 2017 at 5:17 PM, R0b0t1 wrote: > Is it possible to cache compilation results? I would like to avoid > lengthy compile times after changing one file. What I do for these situations is have the task create an empty file which can then be used on subsequent executions for a modtime c

Ant Dependency Management

2017-10-28 Thread R0b0t1
Hello, When referring to Makefiles, dependencies are rules that represent a subset of the overall build. With Ant, I they seem to represent external libraries, so I am having trouble researching my question. Is it possible to cache compilation results? I would like to avoid lengthy compile times

AW: "Local" Installation Location for Ant Extensions

2017-10-28 Thread jhm
You could specify the ivy.jar-location via -lib option. ant -lib path/to/ivy.jar myTarget Or you could specify it _in_ your buildfile, like in http://ant.apache.org/ivy/history/latest-milestone/samples/build.xml Jan > -Ursprüngliche Nachricht- > Von: Dawid Weiss [mailto:dawid.we..