Migrate from Maven to Gradle 3.4 for building.

This commit is contained in:
Andreas Schildbach
2018-03-06 21:13:17 +01:00
parent a6fd71b767
commit aaa5262ef4
23 changed files with 147 additions and 1123 deletions

View File

@@ -15,13 +15,5 @@
# limitations under the License.
set -e
# Check if the jar has been built.
if [ ! -e target/build-checkpoints.jar ]; then
echo "Compiling BuildCheckpoints to a JAR"
cd ..
mvn package -DskipTests
cd tools
fi
java -jar target/build-checkpoints.jar "$@"
args="$@"
gradle -q build_checkpoints "-PappArgs=$args"