Skip to content
Snippets Groups Projects
Commit 9f019bfe authored by Rob Adams's avatar Rob Adams
Browse files

Fix typo in test resources property name

parent dea8848e
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@
<property name="coverage-output" location="${target}/coverage"/>
<property name="source" location="src/main/java"/>
<property name="resources" location="src/main/resources/"/>
<property name="testresources" location="src/test/resources/"/>
<property name="test-resources" location="src/test/resources/"/>
<property name="source-test" location="src/test/java"/>
<property name="python-src" location="src/main/python"/>
<property name="docs" location="${target}/docs"/>
......@@ -138,7 +138,6 @@
<target name="compile-tests" depends="compile-test"/>
<target name="compile-test" depends="compile">
<fileset dir="${testresources}"/>
<javac includeAntRuntime="false" debug="true"
srcdir="${source-test}"
classpath="${build}"
......@@ -255,7 +254,7 @@
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${build-test}"/>
<fileset dir="${testresources}"/>
<fileset dir="${test-resources}"/>
<zipgroupfileset dir="${lib}">
<patternset refid="lib-test"/>
<patternset refid="lib-cobertura"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment