You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by sn...@apache.org on 2018/11/15 10:34:11 UTC

[nutch] 12/14: NUTCH-2671 Upgrade to ant ivy library - fix order of ant target dependencies: "compile-core" must come before "resolve-test"

This is an automated email from the ASF dual-hosted git repository.

snagel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nutch.git

commit 393d3e5f96c0f381b904e17e5abcad695f911e5e
Author: Sebastian Nagel <sn...@apache.org>
AuthorDate: Tue Oct 30 16:45:22 2018 +0100

    NUTCH-2671 Upgrade to ant ivy library
    - fix order of ant target dependencies:
      "compile-core" must come before "resolve-test"
---
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index e19179e..37c44b8 100644
--- a/build.xml
+++ b/build.xml
@@ -415,7 +415,7 @@
   <!-- ================================================================== -->
   <!-- Compile test code                                                  -->
   <!-- ================================================================== -->
-  <target name="compile-core-test" depends="init, resolve-test, compile-core" description="--> compile test code">
+  <target name="compile-core-test" depends="init, compile-core, resolve-test" description="--> compile test code">
     <javac
      encoding="${build.encoding}"
      srcdir="${test.src.dir}"