Skip to content

Commit 8f251b4

Browse files
committed
Maven: Disable attempts to run tests
There aren't any tests, and thus the build log is unnecessarily cluttered with ------------------------------------------------------- T E S T S ------------------------------------------------------- Results : Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
1 parent 4080d85 commit 8f251b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jbmc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ add_subdirectory(src)
33
add_subdirectory(unit)
44

55
add_custom_target(java-models-library ALL
6-
COMMAND mvn --quiet package
6+
COMMAND mvn --quiet -Dmaven.test.skip=true package
77
COMMAND cp target/core-models.jar ${CMAKE_CURRENT_SOURCE_DIR}/src/java_bytecode/library/
88
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/lib/java-models-library
99
)

jbmc/src/java_bytecode/library/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ clean_library:
2727
.PHONY: library
2828
library:
2929
if [ -d $(LIBRARY_DIR) ]; then \
30-
(cd $(LIBRARY_DIR); mvn --quiet package); \
30+
(cd $(LIBRARY_DIR); mvn --quiet -Dmaven.test.skip=true package); \
3131
cp $(LIBRARY_DIR)/target/core-models.jar .; \
3232
fi
3333

0 commit comments

Comments
 (0)