This is an automated email from the ASF dual-hosted git repository.
lewismc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nutch.git
The following commit(s) were added to refs/heads/master by this push:
new 5fc8ed0af NUTCH-3093 Ant target test-plugins to depend on
compile-core-test (#840)
5fc8ed0af is described below
commit 5fc8ed0aff756bc1163bdef9449c9cfe9ab38284
Author: Sebastian Nagel <[email protected]>
AuthorDate: Sat Nov 30 23:21:28 2024 +0100
NUTCH-3093 Ant target test-plugins to depend on compile-core-test (#840)
---
build.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.xml b/build.xml
index ed48be46b..7979d79eb 100644
--- a/build.xml
+++ b/build.xml
@@ -519,11 +519,11 @@
</target>
- <target name="test-plugins" depends="resolve-test, compile" description="-->
run plugin JUnit tests only">
+ <target name="test-plugins" depends="resolve-test, compile,
compile-core-test" description="--> run plugin JUnit tests only">
<ant dir="src/plugin" target="test" inheritAll="false"/>
</target>
- <target name="test-plugin" depends="resolve-test, compile" description="-->
run a single plugin's JUnit tests">
+ <target name="test-plugin" depends="resolve-test, compile,
compile-core-test" description="--> run a single plugin's JUnit tests">
<ant dir="src/plugin" target="test-single" inheritAll="false"/>
</target>