-
-
Save vigneshncc/94b9acf806704f5643b4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export version=1.5.3 | |
if [ "$#" -gt 0 ] ; then | |
export version="$1" | |
fi | |
echo "Installing Dropbox SDK version $version" | |
wget https://www.dropbox.com/static/developers/dropbox-java-sdk-$version.zip | |
unzip dropbox-java-sdk* | |
cd dropbox-java-sdk* | |
mvn \ | |
install:install-file \ | |
-Dfile=lib/dropbox-java-sdk-$version.jar \ | |
-DgroupId=com.dropbox.sdk \ | |
-DartifactId=dropbox-client \ | |
-Dversion=$version \ | |
-Dpackaging=jar \ | |
-DpomFile=pom.xml | |
rm -fr dropbox-java-sdk* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment