blob: 55848e157f3b37d272e5284c7228c626ef5f45c9 (
plain)
1
2
3
4
5
|
#!/bin/sh
# Parallel executions of maven modules and tests.
# Half of CPU core are used in to keep other half for OS and other programs.
mvn clean install -e -B -T0.5C -DforkCount=0.5C $*
|