blob: c8d443243b7255d7231663e8aa3c0ee55b28623e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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 $*
|