How can I build my jar file so that users who use the library will be able to see the javadoc in Eclipse
问题 I'm working on a small library for our in-company use, and have been heavily documenting it. Now I'm building my jar with the following code: <project name="commonutils" default="compile" basedir="."> <property name="src" location="src" /> <property name="build" location="buildDirecotry" /> <target name="compile"> <delete file="${ant.project.name}.jar" /> <mkdir dir="${build}"/> <javac srcdir="${src}" destdir="${build}" debug="on" target="1.5"> <classpath> <pathelement location="lib/build