Changeset 200
- Timestamp:
- Nov 21, 2006, 2:05:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/se/lu/onk/build.xml
r196 r200 31 31 <property name="smooth.src" location="Smooth/src" /> 32 32 <property name="gominer.src" location="GoMiner/src" /> 33 <property name="ztest.src" location="ZTest/src" /> 33 34 34 35 <!-- bin --> … … 44 45 <property name="smooth.bin" location="${bin}/Smooth" /> 45 46 <property name="gominer.bin" location="${bin}/GoMiner" /> 47 <property name="ztest.bin" location="${bin}/ZTest" /> 46 48 47 49 <!-- dist --> … … 214 216 /> 215 217 </target> 218 219 <!-- - - - - - - - - - - - - - - - - - 220 target: ztest.compile 221 - - - - - - - - - - - - - - - - - --> 222 <target name="ztest.compile" depends="basefile.compile"> 223 <mkdir dir="${ztest.bin}"/> 224 <javac 225 srcdir="${ztest.src}" 226 destdir="${ztest.bin}" 227 classpath="${basefile.bin}" 228 debug="true" 229 deprecation="true" 230 encoding="ISO-8859-1" 231 /> 232 </target> 233 216 234 217 235 … … 381 399 <manifest> 382 400 <attribute name="Built-By" value="${user.name}"/> 383 <attribute name="Main-Class" value="et.sf.basedb.plugin.gominer.GoMinerExport"/> 384 </manifest> 385 </jar> 386 </target> 401 <attribute name="Main-Class" value="net.sf.basedb.plugin.gominer.GoMinerExport"/> 402 </manifest> 403 </jar> 404 </target> 405 406 <!-- - - - - - - - - - - - - - - - - - 407 target: ztest.dist 408 - - - - - - - - - - - - - - - - - --> 409 <target name="ztest.dist" depends="ztest.compile"> 410 <mkdir dir="${dist}" /> 411 <jar destfile="${dist}/ztest.jar"> 412 <fileset dir="${basefile.src}" /> 413 <fileset dir="${basefile.bin}" /> 414 <fileset dir="${ztest.bin}" /> 415 <fileset dir="${ztest.src}" /> 416 <manifest> 417 <attribute name="Built-By" value="${user.name}"/> 418 <attribute name="Main-Class" value="net.sf.basedb.plugin.ztest.Start"/> 419 </manifest> 420 </jar> 421 </target> 422 387 423 388 424 <!-- =================================
Note: See TracChangeset
for help on using the changeset viewer.