blob: 5b42988ee0935f34e81fbbeccd07a5460d192086 [file] [log] [blame]
Yuta HIGUCHId62fb872014-01-02 10:40:32 -08001#!/bin/bash
2
3if [ -z "${MVN}" ]; then
4 MVN="mvn"
5fi
6
7# download package dependencies
8${MVN} -T 1C dependency:go-offline
9
10# run goals to download required plugins
11${MVN} -T 1C checkstyle:checkstyle
12${MVN} -q -T 1C clean test -Dtest=DoNotTest -DfailIfNoTests=false > /dev/null
13${MVN} -T 1C compile