Skip to content

Commit

Permalink
quick fix to reduce mvn verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
rigazilla authored and alanfx committed Mar 22, 2018
1 parent 6692cb2 commit 141092e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ endif (MVN_PROGRAM STREQUAL "MVN_PROGRAM-NOTFOUND")

set(KRBSERVER_DIR "${CMAKE_CURRENT_BINARY_DIR}/krbserver")
add_custom_command(OUTPUT ${KRBSERVER_DIR}/target/classes/krbserver/Server.class
COMMAND ${MVN_PROGRAM} ARGS "package"
COMMAND ${MVN_PROGRAM} ARGS "-B" "package"
WORKING_DIRECTORY "${KRBSERVER_DIR}"
)

Expand Down
2 changes: 1 addition & 1 deletion jni/swig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ endif (MSVC)
file(GLOB_RECURSE JAVA_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/jni *.java)

add_custom_command(OUTPUT ${JNI_DIR}/target/org/infinispan/client/jni/hotrod/JniTest.class
COMMAND ${MVN_PROGRAM} ARGS "package"
COMMAND ${MVN_PROGRAM} ARGS "-B" "package"
DEPENDS ${JAVA_SOURCES}
WORKING_DIRECTORY "${JNI_DIR}"
)
Expand Down

0 comments on commit 141092e

Please sign in to comment.