Changeset 478


Ignore:
Timestamp:
08/08/11 20:00:35 (22 months ago)
Author:
tadamusiak
Message:

trying to fix ant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ontoCAT/build.xml

    r477 r478  
    1010        <path id="build.classpath"> 
    1111                <pathelement location="bin" /> 
    12                 <pathelement location="${ant.home}"/> 
     12                <pathelement location="${ant.home}" /> 
    1313                <fileset dir="lib"> 
    1414                        <include name="**/*.jar" /> 
     
    3636 
    3737        <target name="compile"> 
    38                 <echo message="${ant.home}"/> 
     38                <echo message="${ant.home}" /> 
    3939                <javac includeantruntime="no" srcdir="src:test" excludes="**/OntologyParserTest.java" destdir="bin" nowarn="on"> 
    4040                        <classpath refid="build.classpath" /> 
     
    178178                <mkdir dir="${test.reports}" /> 
    179179                <echo>Running junit tests...</echo> 
    180                 <junit includeantruntime="yes" fork="yes" haltonfailure="yes" printSummary="true" showOutput="false" timeout="600000"> 
    181                         <classpath refid="build.classpath" /> 
     180                <junit fork="yes" haltonfailure="yes" printSummary="true" showOutput="false" timeout="600000"> 
     181                        <classpath> 
     182                                <pathelement path="bin" /> 
     183                                <fileset dir="lib"> 
     184                                        <include name="**/*.jar" /> 
     185                                </fileset> 
     186                        </classpath> 
    182187                        <formatter type="xml" usefile="true" /> 
    183188                        <batchtest fork="yes" todir="${test.reports}"> 
Note: See TracChangeset for help on using the changeset viewer.