From 2edaa40b9cc68aca2e537d76d473c07bc9bc62fc Mon Sep 17 00:00:00 2001 From: Oliver Drotbohm Date: Thu, 14 Mar 2019 16:13:54 +0100 Subject: [PATCH] DATAREDIS-945 - Run Maven with -U on CI. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c794b84a..40eab733f 100644 --- a/Makefile +++ b/Makefile @@ -150,5 +150,5 @@ stop: redis-stop sentinel-stop cluster-stop test: $(MAKE) start sleep 2 - ./mvnw clean test -DrunLongTests=true -P$(SPRING_PROFILE) || (echo "maven failed $$?"; exit 1) + ./mvnw clean test -U -DrunLongTests=true -P$(SPRING_PROFILE) || (echo "maven failed $$?"; exit 1) $(MAKE) stop