Changeset 221 for trunk/bio/build.xml

Show
Ignore:
Timestamp:
10/27/09 13:17:57 (2 years ago)
Author:
martijn
Message:

Created test target for all modules

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/bio/build.xml

    r139 r221  
    1212  </target> 
    1313 
     14        <path id="class.path"> 
     15                <pathelement location="../dist/bridgedb.jar"/> 
     16        </path> 
     17 
    1418  <target name="build" depends="prepare"> 
    1519        <javac srcdir="src" 
     
    1721                   debug="true" 
    1822                   destdir="build"> 
    19                 <classpath> 
    20                         <pathelement location="../dist/bridgedb.jar"/> 
    21                 </classpath> 
     23                   <classpath refid="class.path"/> 
    2224        </javac> 
    2325    <copy file="../resources/datasources.txt" 
     
    4951        <target name="test" depends="build"> 
    5052                <path id="test.classpath"> 
     53                        <path refid="class.path"/> 
    5154                        <pathelement location="build"/> 
    5255                        <pathelement location="../corelib/lib/derby.jar"/> 
    53                         <pathelement location="../corelib/lib/junit.jar"/> 
     56                        <pathelement location="../corelib/build-lib/junit.jar"/> 
    5457                </path> 
    5558                <javac srcdir="test" debug="true"