Added missing methods-build requirement for core build.

If not running tests but building, methods-build may be left off. This restores that requirement.
This commit is contained in:
Sam Pottinger
2019-11-25 18:23:39 -08:00
parent de21d68098
commit 9735fb26c4
+2 -2
View File
@@ -96,7 +96,7 @@
<delete dir="resource-test/scratch" />
</target>
<target name="test" depends="methods-build, build, test-compile, clean-pre-test">
<target name="test" depends="build, test-compile, clean-pre-test">
<junit haltonfailure="true">
<classpath refid="classpath.test" />
<formatter type="brief" usefile="false" />
@@ -112,7 +112,7 @@
<compilecommon srcdir="src" destdir="bin" classpath="classpath.base" />
</target>
<target name="build" depends="compile" description="Build core library">
<target name="build" depends="methods-build, compile" description="Build core library">
<jar basedir="bin" destfile="library/core.jar" />
</target>