You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2019/08/27 12:48:39 UTC

[mesos] branch master updated: Revert "Switched on full debug logging and stack trace reporting for Maven."

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f9a2615  Revert "Switched on full debug logging and stack trace reporting for Maven."
f9a2615 is described below

commit f9a26154e9df7a2fa5065f0eb54ce67237b772a6
Author: Benno Evers <be...@mesosphere.com>
AuthorDate: Tue Aug 27 14:45:33 2019 +0200

    Revert "Switched on full debug logging and stack trace reporting for Maven."
    
    This reverts commit 62ba85adc83aef61eb8ef94265396769afc824ae.
    
    The full debug logging is not necessary anymore after a likely fix has been found.
---
 src/Makefile.am         | 4 ++--
 src/java/CMakeLists.txt | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 577acfd..5daee63 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2018,7 +2018,7 @@ if HAS_JAVA
 $(MESOS_JAR): $(MESOS_JAR_SOURCE) $(MESOS_JAR_GENERATED) java/mesos.pom
 	@echo "Building mesos-$(PACKAGE_VERSION).jar ..."
 	@cd $(abs_top_builddir)/src/java &&  \
-	  env JAVA_HOME=$(JAVA_HOME) $(MVN) -e -X -B -f mesos.pom clean package
+	  env JAVA_HOME=$(JAVA_HOME) $(MVN) -B -q -f mesos.pom clean package
 
 # Convenience library for JNI bindings.
 # TODO(Charles Reiss): We really should be building the Java library
@@ -2124,7 +2124,7 @@ $(EXAMPLES_JAR): $(EXAMPLES_SOURCE)
 CLEANFILES += $(EXAMPLES_JAR)
 
 maven-install: $(MESOS_JAR) java/mesos.pom
-	env JAVA_HOME=$(JAVA_HOME) $(MVN) -e -X -B -f java/mesos.pom install
+	env JAVA_HOME=$(JAVA_HOME) $(MVN) -B -q -f java/mesos.pom install
 
 PHONY_TARGETS += maven-install
 endif # HAS_JAVA
diff --git a/src/java/CMakeLists.txt b/src/java/CMakeLists.txt
index 7b72cd3..29422e9 100644
--- a/src/java/CMakeLists.txt
+++ b/src/java/CMakeLists.txt
@@ -42,7 +42,7 @@ configure_file(mesos.pom.in mesos.pom)
 add_custom_command(
   COMMENT "Building ${MESOS_JAR} using Maven..."
   OUTPUT ${MESOS_JAR}
-  COMMAND mvn -e -X -B -f mesos.pom clean package
+  COMMAND mvn -B -f mesos.pom clean package
   DEPENDS ${MESOS_JAR_SRC} ${JAVA_PROTOBUF_SRC})
 
 add_custom_target(mesos-jar DEPENDS ${MESOS_JAR} mesos-protobufs)