From: Pavel V. <va...@us...> - 2002-02-13 11:35:36
|
Update of /cvsroot/javaprofiler/jpiimpl In directory usw-pr-cvs1:/tmp/cvs-serv19729 Modified Files: build.xml Log Message: default to jar Index: build.xml =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** build.xml 5 Feb 2002 01:18:29 -0000 1.6 --- build.xml 13 Feb 2002 11:35:31 -0000 1.7 *************** *** 1,33 **** <?xml version="1.0" encoding="UTF-8"?> ! <project basedir="../" default="all" name="jpiimpl"> ! <!-- configuration ************************************************** --> ! <!-- doxygen --> ! <property name="doxygen_dir" location="D:\Program Files\doxygen-1.2.12"/> ! <property name="doxygen_exec" location="${doxygen_dir}\bin\doxygen.exe"/> ! <!-- end of configuration ******************************************* --> ! <!-- Common classpath --> ! <path id="project.classpath"> ! <pathelement location="jpiimpl"/> ! <pathelement location="interface"/> ! </path> ! ! <!-- Common jar pattern set --> ! <patternset id="project.jarpattern.exclude"> ! <exclude name="**/*.java"/> ! <exclude name="**/*.bak"/> ! <exclude name="**/*.form"/> ! <exclude name="**/.nbattrs"/> ! <exclude name="docs"/> ! <!-- others are in deafult exlcudes (cvsfiles, "*~",".#*", etc.) --> ! </patternset> ! ! <target name="init"> ! <!-- You can set up any variables you want used throughout the script here. --> ! <property name="hello" value="world"/> </target> --- 1,31 ---- <?xml version="1.0" encoding="UTF-8"?> ! <project basedir="../" default="jar" name="jpiimpl"> ! <target name="init"> ! <tstamp/> ! <!-- You can set up any variables you want used throughout the script here. --> ! <!-- configuration ************************************************** --> ! <!-- doxygen --> ! <property name="doxygen_dir" location="D:\Program Files\doxygen-1.2.12"/> ! <property name="doxygen_exec" location="${doxygen_dir}\bin\doxygen.exe"/> ! <!-- end of configuration ******************************************* --> ! <!-- Common classpath --> ! <path id="project.classpath"> ! <pathelement location="jpiimpl"/> ! <pathelement location="interface"/> ! </path> ! <!-- Common jar pattern set --> ! <patternset id="project.jarpattern.exclude"> ! <exclude name="**/*.java"/> ! <exclude name="**/*.bak"/> ! <exclude name="**/*.form"/> ! <exclude name="**/.nbattrs"/> ! <exclude name="docs"/> ! <!-- others are in deafult exlcudes (cvsfiles, "*~",".#*", etc.) --> ! </patternset> </target> |