Skip to content

Commit 0c1c950

Browse files
committed
Silent Maven in native image packaging
1 parent c834593 commit 0c1c950

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ binary: clean ## Build the binary distribution
1616
@mvnw package -P assemblies -Dgpg.skip=true -Dmaven.test.skip
1717

1818
native-image: clean ## Build the native image
19-
@mvnw package -DskipTests -P native-image -P '!java-packaging'
19+
@mvnw -q package -DskipTests -P native-image -P '!java-packaging'
2020
native-image -jar target/perf-test.jar -H:Features="com.rabbitmq.perf.NativeImageFeature"
2121

2222

2323
package-native-image: native-image ## Package the native image
2424
cp perf-test target/perf-test_$(OS)_$(HARDWARE)
25-
@mvnw checksum:files -P native-image
25+
@mvnw -q checksum:files -P native-image
2626
gpg --armor --local-user $(GPG_KEYNAME) --detach-sign target/perf-test_$(OS)_$(HARDWARE)
2727

2828
help:

0 commit comments

Comments
 (0)