You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by bl...@apache.org on 2016/11/06 21:03:02 UTC

avro git commit: AVRO-1897 ADDENDUM: Install all Java artifacts during test build.

Repository: avro
Updated Branches:
  refs/heads/master 7a398e0f3 -> cae491a62


AVRO-1897 ADDENDUM: Install all Java artifacts during test build.

The interop tests need the root POM installed to pass, so install all
build artifacts since other modules and tests depend on Java.


Project: http://git-wip-us.apache.org/repos/asf/avro/repo
Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/cae491a6
Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/cae491a6
Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/cae491a6

Branch: refs/heads/master
Commit: cae491a6204b8167481fcc46e7f7eed061a44a82
Parents: 7a398e0
Author: Ryan Blue <bl...@apache.org>
Authored: Sun Nov 6 13:00:52 2016 -0800
Committer: Ryan Blue <bl...@apache.org>
Committed: Sun Nov 6 13:02:44 2016 -0800

----------------------------------------------------------------------
 build.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/avro/blob/cae491a6/build.sh
----------------------------------------------------------------------
diff --git a/build.sh b/build.sh
index 14f3149..255e46a 100755
--- a/build.sh
+++ b/build.sh
@@ -40,7 +40,8 @@ do
     test)
       # run lang-specific tests
       (cd lang/java; ./build.sh test)
-      (cd lang/java; ./build.sh test; mvn install -pl tools  -am -DskipTests)
+      # install java artifacts required by other builds and interop tests
+      mvn install -DskipTests
       (cd lang/py; ./build.sh test)
       (cd lang/py3; ./build.sh test)
       (cd lang/c; ./build.sh test)