Skip to content

Instantly share code, notes, and snippets.

@hellonico
Created January 16, 2013 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hellonico/4543727 to your computer and use it in GitHub Desktop.
Save hellonico/4543727 to your computer and use it in GitHub Desktop.
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