1
0
Mirror von https://github.com/SonarSource/sonarqube.git synchronisiert 2024-07-29 20:17:57 +02:00
sonarqube/quick-build.sh
Evgeny Mandrikov 6a907c8f5d Skip sanity checks in dev profile
Move skip of sanity checks from quick-build scripts into dev profile.
This is more convenient at least for users of Maven bash completion.
2012-03-14 09:52:29 +04:00

16 Zeilen
383 B
Bash
Ausführbare Datei

#!/bin/sh
export MAVEN_OPTS='-Xmx256m'
echo '-------------------------------------------------'
echo ''
echo ' WARNINGS'
echo ''
echo ' Unit tests are NOT executed.'
echo ' Build for FIREFOX ONLY.'
echo ''
echo '-------------------------------------------------'
# it is recommended to use maven 3 for faster builds
mvn clean install -Dtest=false -DfailIfNoTests=false -Pdev $*