On Tue, 06 Jan 2004, Sebastian BAZLEY <[EMAIL PROTECTED]> wrote: > Also, I'd be interested to know what a "runtime" dependency is - I > did not see this anywhare in the Gump docs. > > Does it mean that the dependency is not needed at compile-time?
No, runtime="true" means it is needed at compile and at run-time. runtime="false" means it is only needed at compilation time. Some things are only needed at compilation time, Ant or XDoclet for example. XDoclet itself needs a couple of projects if you want to run it, these are supposed to marked as runtime dependencies. If you want to use XDoclet, you say inherit="runtime" in your project's descriptor and don't have to track all of XDoclet's dependencies manually. Stefan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
