aboutsummaryrefslogtreecommitdiff
path: root/util/deploy_snapshot.sh
blob: e84496439576b7729dda158872dde7fae83b32f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# see https://coderwall.com/p/9b_lfq

set -e -u

function mvn_deploy() {
  ./mvnw clean deploy -DskipTests=true "$@"
}

echo "Publishing Maven snapshot..."

mvn_deploy
mvn_deploy -f android/pom.xml

echo "Maven snapshot published."