Re: How to create a classpath dynamicaly

2006-08-14 Thread wohlgemuth
you don need to modify it. just define for subprojects a folder called libs and incluse in your classpath the content of all these folders. I using this method to work on 10 project depending on each other with sub projects. an example you can find under: https://sourceforge.net/projects/bbcs/

Re: How to create a classpath dynamicaly

2006-08-14 Thread Willy Reinhardt
Hi, I can't because the application is buildup from several sub projects and I would a avoid to modify the script when someone add a jars. Thanks Willy >>> On Mon, Aug 14, 2006 at No 4:05 PM, in message <[EMAIL PROTECTED]>, wohlgemuth <[EMAIL PROTECTED]> wrote: just define a normal classpath

Re: How to create a classpath dynamicaly

2006-08-14 Thread wohlgemuth
just define a normal classpath on this directory after you moved your stuff there. or you want todo this during the runtime of your programm? /gert On 8/14/06, Willy Reinhardt <[EMAIL PROTECTED]> wrote: Hi, I have an ant task which create and copy jar files into a structure of directories. Nex

How to create a classpath dynamicaly

2006-08-14 Thread Willy Reinhardt
Hi, I have an ant task which create and copy jar files into a structure of directories. Next to this task I would create dynamically a property which is the classpath use as token for the script to start the application. Use like: java -cp @unix-classpath@ -jar org.toto.Main Is an ant task hel