Make it easier to pre-test all profiles without having to create a PR and wait on Travis.
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/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
|