build-project.sh 327 B

123456789
  1. #!/bin/bash
  2. set -e
  3. source $(dirname $0)/common.sh
  4. repository=$(pwd)/distribution-repository
  5. pushd git-repo > /dev/null
  6. ./gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 -PdistributionRepository=${repository} build publishAllPublicationsToDistributionRepository
  7. popd > /dev/null