Re: setting classpath

2011-04-20 Thread Nicolas Lalevée
Le 18 avr. 2011 à 15:56, Felix Drueke a écrit : > Hi, > > I think the usual procedure to set the classpath via Ivy is to use the > cachepath-task. > So I assume the following is a very common structure: > > > > > > > > > > classpathref="build.path" /> >

AW: AW: Setting classpath for nested ant call

2008-09-10 Thread Knuplesch, Juergen
-Ursprüngliche Nachricht- Von: merlin_the_happy_pig [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 11. September 2008 01:53 An: user@ant.apache.org Betreff: Re: AW: Setting classpath for nested ant call The nested ant call fails because of compilation errors (classpath wrong!). So I need to set the

Re: AW: Setting classpath for nested ant call

2008-09-10 Thread merlin_the_happy_pig
D] > Gesendet: Freitag, 5. September 2008 17:00 > An: user@ant.apache.org > Betreff: Setting classpath for nested ant call > > > Ant newbie here. I need to call another ant task in a different build > file, so I do: > > ... > > The problem is is that this ne

AW: Setting classpath for nested ant call

2008-09-07 Thread Knuplesch, Juergen
: Freitag, 5. September 2008 17:00 An: user@ant.apache.org Betreff: Setting classpath for nested ant call Ant newbie here. I need to call another ant task in a different build file, so I do: http://www.nabble.com/Setting-classpath-for-nested-ant-call-tp19333163p19333163.html Sent from

RE: Setting classpath for nested ant call

2008-09-07 Thread Martin Gainty
[EMAIL PROTECTED] > To: user@ant.apache.org > Subject: Setting classpath for nested ant call > > > Ant newbie here. I need to call another ant task in a different build file, > so I do: > > ... > > The problem is is that this nested ant call fails because the

Setting classpath for nested ant call

2008-09-05 Thread merlin_the_happy_pig
Ant newbie here. I need to call another ant task in a different build file, so I do: http://www.nabble.com/Setting-classpath-for-nested-ant-call-tp19333163p19333163.html Sent from the Ant - Users mailing list archive at Nabble.com

Re: Setting classpath when executing jar file

2006-07-09 Thread Ralf Sigmund
This works perfect for the and the tasks. however i still could not find out how I should do the same for the excution of an custom ant task. everything is perfect for the but when I want to actually exceute my own task the classpath defined in the is not used. ralf On 7/7/06, [EMAIL PROTECTE

AW: Setting classpath when executing jar file

2006-07-07 Thread Jan.Materne
[EMAIL PROTECTED] >Gesendet: Freitag, 7. Juli 2006 16:41 >An: Ant Users List >Betreff: Re: Setting classpath when executing jar file > >> >>> classpathref="libraries"> >> >> >> > >The problem is in fact that always

Re: Setting classpath when executing jar file

2006-07-07 Thread Dominique Devienne
The problem is in fact that always ignores any classpath specified, because SUN's java does when using the -jar command line switch. See the JDK Tools documentation (or my answer to the 'unusual' post of the 4th of July...) Use to be able to specify a classpath. --DD

Re: Setting classpath when executing jar file

2006-07-06 Thread chuanjiang lo
Thanks Appreciate your help On 7/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >It seems like i'm not getting the classpath setting correctly >hence there is an error in executing my jar file.. > > > > > > > > >classpathref="libraries"> >

AW: Setting classpath when executing jar file

2006-07-06 Thread Jan.Materne
>It seems like i'm not getting the classpath setting correctly >hence there is an error in executing my jar file.. > > > > > > > > >classpathref="libraries"> > > > > >When trying to execute the jar file, the classes in other jars >is not

Setting classpath when executing jar file

2006-07-06 Thread chuanjiang lo
It seems like i'm not getting the classpath setting correctly hence there is an error in executing my jar file.. ... ... When trying to execute the jar file, the classes in other jars is not found. How to correctly set the classpathref