blob: 47bc89e9e2b2765fdc2841888e685b893e18b11e (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
./stop.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 $*
|