From 525c3b48167f89280cd002115145694cabcaf1ec Mon Sep 17 00:00:00 2001 From: liyafan82 Date: Wed, 15 Apr 2020 13:56:05 -0700 Subject: [PATCH] ARROW-7534: [Java] Create a new java/contrib module To better clarify the status of java sub-modules, create a contrib module and move the following modules underneath it. - algorithm - adapter - plasma Closes #6812 from liyafan82/fly_0402_mv Authored-by: liyafan82 Signed-off-by: Micah Kornfield --- ci/scripts/java_build.sh | 2 +- ci/scripts/java_test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/scripts/java_build.sh b/ci/scripts/java_build.sh index acb109caa0ae..bf4d88366625 100755 --- a/ci/scripts/java_build.sh +++ b/ci/scripts/java_build.sh @@ -38,7 +38,7 @@ if [ "${ARROW_GANDIVA_JAVA}" = "ON" ]; then fi if [ "${ARROW_PLASMA}" = "ON" ]; then - pushd ${source_dir}/plasma + pushd ${source_dir}/contrib/plasma ${mvn} clean install popd fi diff --git a/ci/scripts/java_test.sh b/ci/scripts/java_test.sh index 1383388ab41b..b9780bc75df3 100755 --- a/ci/scripts/java_test.sh +++ b/ci/scripts/java_test.sh @@ -37,7 +37,7 @@ if [ "${ARROW_GANDIVA_JAVA}" = "ON" ]; then fi if [ "${ARROW_PLASMA}" = "ON" ]; then - pushd ${source_dir}/plasma + pushd ${source_dir}/contrib/plasma java -cp target/test-classes:target/classes \ -Djava.library.path=${cpp_build_dir} \ org.apache.arrow.plasma.PlasmaClientTest