~pbeaman/akiban-persistit/fix-1032701-interrupts-leave-latches

« back to all changes in this revision

Viewing changes to examples/SimpleBench/build.xml

  • Committer: Padraig O'Sullivan
  • Date: 2011-02-01 16:48:36 UTC
  • mfrom: (125.1.12 learning)
  • Revision ID: osullivan.padraig@gmail.com-20110201164836-mtdbk9d0rgcxpwye
Merge Padraig.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<project name="SimpleBench" default="run" basedir=".">
 
2
    <description>
 
3
        Build SimpleBench.java
 
4
    </description>
 
5
 
 
6
  <target name="compile" description="compile the source " >
 
7
    <javac debug="true"
 
8
           srcdir="."
 
9
           destdir="."
 
10
           classpath="../../core/target/akiban-persistit-core-2.1-SNAPSHOT-jar-with-dependencies-and-tests.jar" />
 
11
  </target>
 
12
 
 
13
  <target name="run" depends="compile">
 
14
    <java  classname="SimpleBench"
 
15
           classpath="../../core/target/akiban-persistit-core-2.1-SNAPSHOT-jar-with-dependencies-and-tests.jar;." />
 
16
  </target>
 
17
  
 
18
</project>
 
19