English 中文(简体)
Drop Box sdk Library maven
原标题:Dropbox sdk repository maven
  • 时间:2012-05-10 11:33:41
  •  标签:
  • dropbox

即便它像一个sil笑的问题一样,我也找不到 drop子的存放处。 因此,在我的发言中,我宣布了这种依赖:

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

但这一存放处无法找到:

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

成就

最佳回答

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

问题回答

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

页: 1





相关问题
Mercurial (and, I guess Git) with Dropbox: any drawbacks?

I have a Mercurial repository for a personal project, and I have been storing the master repository in my Dropbox for a few weeks now (something along this line; and I understand it s also possible ...

Jquery.cascade plugin change the format of the Ajax URL

I m using the jQuery.Cascade plugin in my Asp.Net MVC application. I ve got it all working in a manner as follows: jQuery("#CompareModelList").cascade("#CompareManufacturerList", { ...

Data structure to sync a file-tree

I m in the process of a writing an application, which needs to synchronize a file-structure between a client and a (http) server. The file-structure is essentially a list of file-paths where each ...

热门标签