javadb/build.xml
changeset 135 f837cf975e95
parent 100 a6d2add085d7
equal deleted inserted replaced
134:8325a0fc22cd 135:f837cf975e95
    42 			sourcepath="${basedir}" debug="on">
    42 			sourcepath="${basedir}" debug="on">
    43 			<classpath refid="classpath" />
    43 			<classpath refid="classpath" />
    44 		</javac>
    44 		</javac>
    45 	</target>
    45 	</target>
    46 
    46 
    47 	<target name="debug" depends="init, compile">
    47 	<target name="debug" depends="compile">
       
    48 		<echo message="Use ant init to create an initial database." />
    48 		<java classname="${package.name}.app.App"
    49 		<java classname="${package.name}.app.App"
    49 			failonerror="true" fork="yes">
    50 			failonerror="true" fork="yes">
    50 			<classpath refid="classpath" />
    51 			<classpath refid="classpath" />
       
    52 			<jvmarg line="-ea" />
    51 			<arg line="${app.host}" />
    53 			<arg line="${app.host}" />
    52 		</java>
    54 		</java>
    53 	</target>
    55 	</target>
    54 </project>
    56 </project>