From aef97179353bbc8f4da844927ecdcbb66fda19b3 Mon Sep 17 00:00:00 2001 From: Vincent Viloria Date: Mon, 15 Apr 2024 16:59:02 -0700 Subject: [PATCH] add -B flag to mvn install for cleaner output --- .github/scripts/backwards_compatibility_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/backwards_compatibility_check.sh b/.github/scripts/backwards_compatibility_check.sh index 2a4a5962..afd828fe 100755 --- a/.github/scripts/backwards_compatibility_check.sh +++ b/.github/scripts/backwards_compatibility_check.sh @@ -15,7 +15,7 @@ LATEST_VERSION=$(ls $KCL_MAVEN_DIR | grep '[0-9].[0-9].[0-9]') LATEST_JAR=$KCL_MAVEN_DIR/$LATEST_VERSION/amazon-kinesis-client-$LATEST_VERSION.jar # get the current jar (i.e. the jar that is pending review) -mvn install -DskipTests +mvn -B install -DskipTests CURRENT_VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) CURRENT_JAR=$KCL_MAVEN_DIR/$CURRENT_VERSION/amazon-kinesis-client-$CURRENT_VERSION.jar