From: Gerd M. <li...@us...> - 2001-06-01 16:56:50
|
Update of /cvsroot/tm4j/tm4j In directory usw-pr-cvs1:/tmp/cvs-serv17903 Modified Files: build.xml Log Message: - added: ozone-test target Index: build.xml =================================================================== RCS file: /cvsroot/tm4j/tm4j/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** build.xml 2001/05/29 18:08:48 1.5 --- build.xml 2001/06/01 16:56:48 1.6 *************** *** 43,46 **** --- 43,47 ---- <echo message=" ozone-install --> intializes a ozone database"/> <echo message=" ozone-run --> runs a ozone server"/> + <echo message=" ozone-test --> small ozone test, that stores an XTM file"/> <echo message=" distrib-all --> generates the TM4J source and binary distributions"/> <echo message=" clean-all --> cleans up all compiled classes"/> *************** *** 302,305 **** --- 303,307 ---- com.techquila.topicmap.ozone.OzoneAssociationImpl com.techquila.topicmap.ozone.OzoneTopicMapUtilsImpl + com.techquila.topicmap.ozone.OzoneXTMBuilderHelperImpl "/> *************** *** 355,365 **** </target> ! <!--target name="ozoneTest" depends="init"> ! <java classname="com.techquila.topicmap.ozone.XTMReaderImpl" classpathref="project.class.path"> <arg value="ozonedb:local:${ozoneDB.dir}"/> ! <arg value="resource/tests/music-xtm.xml"/> </java> ! </target--> </project> --- 357,374 ---- </target> ! <target name="ozone-test-args" unless="ozone.test.file"> ! <echo> ! #### You have to specify an XTM file with '-Dozone.test.file=filename' !" #### ! </echo> ! </target> ! ! <target name="ozone-test" if="ozone.test.file" depends="ozone-test-args, init"> ! <java classname="com.techquila.topicmap.ozone.OzoneXTMBuilder" classpathref="project.class.path"> <arg value="ozonedb:local:${ozoneDB.dir}"/> ! <!--arg value="ozonedb:remote://localhost:${ozoneDB.port}"/--> ! <arg value="${ozone.test.file}"/> </java> ! </target> </project> |