[misc] make: skip tests for the build and package target

http://maven.apache.org/plugins-archives/maven-surefire-plugin-2.12.4/examples/skipping-test.html
This commit is contained in:
Jakob Ackermann 2020-03-10 15:35:50 +01:00
parent b4651efc79
commit f98212e96b

View file

@ -6,7 +6,7 @@ run: package
build:
mvn package
mvn package -DskipTests
test:
@ -18,7 +18,7 @@ clean:
package: clean
mvn package
mvn package -DskipTests
.PHONY: run package build clean test