> <target name="run" depends="compile"> > <java fork="true" classname="view.MyFrame" >classpathref="libraries"> > <classpath> > <pathelement path="${targetdir}"/> > </classpath> > </java> ></target>
I think you cant combine classpathref with a nested classpath. Have you tried running with -verbose or -debug? There 'should' be an error message on that (otherwise we have to implement that ;) Change the target to <target name="run" depends="compile"> <java fork="true" classname="view.MyFrame"> <classpath> <path refid="libraries"/> <pathelement path="${targetdir}"/> </classpath> </java> </target> Jan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]