Ant with 'classpath' he meant the one for the <javadoc> task: <javadoc ... classpath=""/>
Because your source files depends on these libraries you should have defined them somewhere before: <path id="cp"><fileset .../></path> <javac .... classpathref="cp"/> then reuse that <javadoc ... classpathref="cp"/> Jan >-----Ursprüngliche Nachricht----- >Von: Scot P. Floess [mailto:[email protected]] >Gesendet: Dienstag, 27. Oktober 2009 21:29 >An: Ant Users List >Betreff: Re: create javadoc > > >You need to fix your classpath to include the other project's >classes... > >On Tue, 27 Oct 2009, Júlio Cesar Bueno Cotta wrote: > >> Hello, >> I am trying to create a build of a java project what use classes from >> another project in the workspace.. >> when I run the javadoc task..I see things like >> >> project/package/MyClass.java warning - Tag @see: reference >not found: >> com.bla.bla.bla >> >> where com.bla.bla.bla is the referencied classes. >> How can I correct the reference? >> thanks. >> -- >> Júlio Cesar Bueno Cotta >> Graduando em ciência da computação >> Universidade Federal de Viçosa >> > >Scot P. Floess >27 Lake Royale >Louisburg, NC 27549 > >252-478-8087 (Home) >919-890-8117 (Work) > >Chief Architect JPlate http://sourceforge.net/projects/jplate >Chief Architect JavaPIM http://sourceforge.net/projects/javapim > >Architect Keros http://sourceforge.net/projects/keros > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
