You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2019/02/01 17:45:06 UTC

[accumulo-examples] branch master updated: Make build script call mvn verify and update .gitignore

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

mmiller pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 7664105  Make build script call mvn verify and update .gitignore
7664105 is described below

commit 7664105994ebbd569da1779c91878900b7cb022d
Author: Mike Miller <mm...@apache.org>
AuthorDate: Fri Feb 1 12:39:55 2019 -0500

    Make build script call mvn verify and update .gitignore
---
 .gitignore | 1 +
 bin/build  | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index ce8bb12..614659a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /*.iml
 /.idea
 /examples.conf
+/conf/env.sh
diff --git a/bin/build b/bin/build
index b4404a3..c0b462b 100755
--- a/bin/build
+++ b/bin/build
@@ -27,5 +27,5 @@ fi
 if [[ ! -f "$EXAMPLES_JAR_PATH" ]]; then
   echo "Building $EXAMPLES_JAR_PATH"
   cd "${ex_home}" || exit 1
-  mvn clean package -P create-shade-jar -D skipTests -D accumulo.version="$ACCUMULO_VERSION" -D hadoop.version="$HADOOP_VERSION" -D zookeeper.version="$ZOOKEEPER_VERSION"
+  mvn clean verify -P create-shade-jar -D skipTests -D accumulo.version="$ACCUMULO_VERSION" -D hadoop.version="$HADOOP_VERSION" -D zookeeper.version="$ZOOKEEPER_VERSION"
 fi