From: Pavel V. <va...@us...> - 2002-01-31 06:03:47
|
Update of /cvsroot/javaprofiler/jpiimpl In directory usw-pr-cvs1:/tmp/cvs-serv3364/jpiimpl Modified Files: build.xml Log Message: small fix Index: build.xml =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/build.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** build.xml 2002/01/15 18:38:37 1.3 --- build.xml 2002/01/31 06:03:43 1.4 *************** *** 3,8 **** <!-- configuration ************************************************** --> ! <path id="project.doxygen.dir" path="D:\Program Files\doxygen-1.2.12"/> ! <path id="project.doxygen.exec" path="${project.doxygen.dir}\bin\doxygen.exe"/> <!-- end of configuration ******************************************* --> --- 3,8 ---- <!-- configuration ************************************************** --> ! <path id="project.doxygen.dir" location="D:\Program Files\doxygen-1.2.12"/> ! <path id="project.doxygen.exec" location="${project.doxygen.dir}\bin\doxygen.exe"/> <!-- end of configuration ******************************************* --> *************** *** 30,34 **** ! <!-- <target depends="init" name="interface"> <javac debug="true" failonerror="true" srcdir="interface/net"> <classpath> <pathelement location="jpiimpl"/> <pathelement location="interface"/> </classpath> <src> <pathelement location="jpiimpl/net"/> <pathelement location="interface/net"/> </src> </javac> </target> --> --- 30,45 ---- ! <!-- <target depends="init" name="interface"> ! <javac debug="true" failonerror="true" srcdir="interface/net"> ! <classpath> ! <pathelement location="jpiimpl"/> ! <pathelement location="interface"/> ! </classpath> ! <src> ! <pathelement location="jpiimpl/net"/> ! <pathelement location="interface/net"/> ! </src> ! </javac> ! </target> --> *************** *** 72,92 **** ! <!-- <target name="test" depends="init,all" description="Try running it."> <java classname="com.foo.Main" fork="true" failonerror="true"> <classpath> <pathelement location="."/> </classpath> --> <!-- Pass some args, perhaps: --> <!-- <arg value="-myfile"/> --> <!-- Will be given as an absolute path: --> ! <!-- <arg file="myfile.txt"/> </java> </target> --> <target depends="init" description="Javadoc for my API." name="javadoc"> <mkdir dir="jpiimpl/docs/javadoc"/> ! <javadoc Windowtitle="JPI and Implementation" defaultexcludes="yes" destdir="jpiimpl/docs/javadoc" group="JPI net.sourceforge.javaprofiler.jpi*,Implementation net.sourceforge.javaprofiler.jpiimpl*" private="on"> <doctitle>Java Profiling Interface and Implementation</doctitle> <package name="net.sourceforge.javaprofiler.jpiimpl.*"/> <package name="net.sourceforge.javaprofiler.jpi.*"/> ! <!-- <group title="Group 1 Packages" packages="net.sourceforge.javaprofiler.jpi*"/> <group title="Group 2 Packages" packages="com.dummy.test.b*:com.dummy.test.c*:net*"/> --> ! <!-- <group title="Java Profiling Interface" > <package name="net.sourceforge.javaprofiler.jpi*"/> </group> <group title="Implementation" > <package name="net.sourceforge.net.jpiimpl*"/> </group> --> <sourcepath> --- 83,117 ---- ! <!-- <target name="test" depends="init,all" description="Try running it."> ! <java classname="com.foo.Main" fork="true" failonerror="true"> ! <classpath> ! <pathelement location="."/> ! </classpath> --> <!-- Pass some args, perhaps: --> <!-- <arg value="-myfile"/> --> <!-- Will be given as an absolute path: --> ! <!-- <arg file="myfile.txt"/> ! </java> ! </target> --> <target depends="init" description="Javadoc for my API." name="javadoc"> <mkdir dir="jpiimpl/docs/javadoc"/> ! <javadoc Windowtitle="JPI and Implementation" defaultexcludes="yes" destdir="jpiimpl/docs/javadoc" ! group="JPI net.sourceforge.javaprofiler.jpi*,Implementation net.sourceforge.javaprofiler.jpiimpl*" ! private="on"> <doctitle>Java Profiling Interface and Implementation</doctitle> <package name="net.sourceforge.javaprofiler.jpiimpl.*"/> <package name="net.sourceforge.javaprofiler.jpi.*"/> ! <!-- <group title="Group 1 Packages" packages="net.sourceforge.javaprofiler.jpi*"/> ! <group title="Group 2 Packages" packages="com.dummy.test.b*:com.dummy.test.c*:net*"/> --> ! <!-- <group title="Java Profiling Interface" > ! <package name="net.sourceforge.javaprofiler.jpi*"/> ! </group> ! <group title="Implementation" > ! <package name="net.sourceforge.net.jpiimpl*"/> ! </group> --> <sourcepath> *************** *** 100,104 **** <target depends="init" description="Doxygen documentation for my API." name="doxygen"> <mkdir dir="jpiimpl/docs/doxygen"/> ! <!-- <exec executable="doxygen" failonerro="no"> //+params for os <arg line=""/> <arg vaule=""/> <arg path=""/> </exec> --> </target> --- 125,133 ---- <target depends="init" description="Doxygen documentation for my API." name="doxygen"> <mkdir dir="jpiimpl/docs/doxygen"/> ! <!-- <exec executable="doxygen" failonerro="no"> //+params for os ! <arg line=""/> ! <arg vaule=""/> ! <arg path=""/> ! </exec> --> </target> |