Changeset 478
- Timestamp:
- 08/08/11 20:00:35 (22 months ago)
- File:
-
- 1 edited
-
trunk/ontoCAT/build.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ontoCAT/build.xml
r477 r478 10 10 <path id="build.classpath"> 11 11 <pathelement location="bin" /> 12 <pathelement location="${ant.home}" />12 <pathelement location="${ant.home}" /> 13 13 <fileset dir="lib"> 14 14 <include name="**/*.jar" /> … … 36 36 37 37 <target name="compile"> 38 <echo message="${ant.home}" />38 <echo message="${ant.home}" /> 39 39 <javac includeantruntime="no" srcdir="src:test" excludes="**/OntologyParserTest.java" destdir="bin" nowarn="on"> 40 40 <classpath refid="build.classpath" /> … … 178 178 <mkdir dir="${test.reports}" /> 179 179 <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> 182 187 <formatter type="xml" usefile="true" /> 183 188 <batchtest fork="yes" todir="${test.reports}">
Note: See TracChangeset
for help on using the changeset viewer.