From 4807ae0e8ab91614415e3f72a06a78fb4c41b2be Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Wed, 17 May 2017 11:18:19 -0500 Subject: [PATCH] #585 - Add script to run ALL build profiles Make it easier to pre-test all profiles without having to create a PR and wait on Travis. --- build_all.bash | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 build_all.bash diff --git a/build_all.bash b/build_all.bash new file mode 100755 index 00000000..3b600fa9 --- /dev/null +++ b/build_all.bash @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# +# Convenient way to run ALL build profiles at once, before committing changes. +# +# + +mvn clean package && +mvn clean package -Pspring43-next && +mvn clean package -Pspring5 && +mvn clean package -Pspring5-next