Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dropbox sdk repository maven

Tags:

dropbox

Even if it sounds like a silly question, I am not able to find the repository where the dropbox sdk is. So in my pom.xml I have declared this dependency:

<!-- Dropbox dependency -->
        <dependency>
            <groupId>com.dropbox</groupId>
            <artifactId>client2</artifactId>
            <version>1.3</version>
        </dependency>

But it can not be found in this repository:

<repository>
            <id>dropbox-client2</id>
            <url>http://getdropbox.com/developers/</url>
        </repository>

Thanks

like image 930
Blanca Hdez Avatar asked May 10 '12 11:05

Blanca Hdez


2 Answers

Dropbox just release the version 1.6 of it SDK in Java. And this time they made it available on Maven repository.

<dependency>
    <groupId>com.dropbox.core</groupId>
    <artifactId>dropbox-core-sdk</artifactId>
    <version>1.6</version>
</dependency>

Checkout for futher updates:
http://mvnrepository.com/artifact/com.dropbox.core/dropbox-core-sdk

like image 104
Martin Magakian Avatar answered Nov 01 '22 08:11

Martin Magakian


The official dropbox API is not publish on Maven central repository. I repackaged it and published on Maven central.

You'll find instruction to add to your project here : https://github.com/vanduynslagerp/dropbox-java-sdk#readme

like image 35
Pierre Vanduynslager Avatar answered Nov 01 '22 08:11

Pierre Vanduynslager