Download dropbox-core-sdk-1.7.jar file

Introduction

You can download dropbox-core-sdk-1.7.jar in this page.

License

MIT

Type List

dropbox-core-sdk-1.7.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.dropbox.core/dropbox-core-sdk/pom.properties
META-INF/maven/com.dropbox.core/dropbox-core-sdk/pom.xml
com.dropbox.core.DbxAccountInfo.class
com.dropbox.core.DbxAppInfo.class
com.dropbox.core.DbxAuthFinish.class
com.dropbox.core.DbxAuthInfo.class
com.dropbox.core.DbxClient.class
com.dropbox.core.DbxDelta.class
com.dropbox.core.DbxDeltaC.class
com.dropbox.core.DbxEntry.class
com.dropbox.core.DbxException.class
com.dropbox.core.DbxHost.class
com.dropbox.core.DbxPath.class
com.dropbox.core.DbxRequestConfig.class
com.dropbox.core.DbxRequestUtil.class
com.dropbox.core.DbxSdkVersion.class
com.dropbox.core.DbxSessionStore.class
com.dropbox.core.DbxStandardSessionStore.class
com.dropbox.core.DbxStreamWriter.class
com.dropbox.core.DbxTask.class
com.dropbox.core.DbxThumbnailFormat.class
com.dropbox.core.DbxThumbnailSize.class
com.dropbox.core.DbxUrlWithExpiration.class
com.dropbox.core.DbxWebAuth.class
com.dropbox.core.DbxWebAuthHelper.class
com.dropbox.core.DbxWebAuthNoRedirect.class
com.dropbox.core.DbxWriteMode.class
com.dropbox.core.NoThrowOutputStream.class
com.dropbox.core.http.HttpRequestor.class
com.dropbox.core.http.StandardHttpRequestor.class
com.dropbox.core.json.JsonArrayReader.class
com.dropbox.core.json.JsonDateReader.class
com.dropbox.core.json.JsonReadException.class
com.dropbox.core.json.JsonReader.class
com.dropbox.core.json.JsonWriter.class
com.dropbox.core.util.Collector.class
com.dropbox.core.util.CountingOutputStream.class
com.dropbox.core.util.DumpWriter.class
com.dropbox.core.util.Dumpable.class
com.dropbox.core.util.IOUtil.class
com.dropbox.core.util.LangUtil.class
com.dropbox.core.util.Maybe.class
com.dropbox.core.util.StringUtil.class

Pom

dropbox-core-sdk-1.7.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
                             http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <name>Dropbox Core API SDK</name>
    <description>A client library for Dropbox's HTTP-based "Core API".</description>

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

    <packaging>jar</packaging>

    <url>https://www.dropbox.com/developers/core</url>
    <scm>
        <connection>scm:git:git@github.com:dropbox/dropbox-sdk-java.git</connection>
        <developerConnection>scm:git:git@github.com:dropbox/dropbox-sdk-java.git</developerConnection>
        <url>https://github.com/dropbox/dropbox-sdk-java</url>
    </scm>

    <licenses>
        <license>
            <name>MIT</name>
            <url>http://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>dropbox-api-team</id>
            <name>Dropbox API Team</name>
            <email>api-support@dropbox.com</email>
            <organization>Dropbox</organization>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>[2.2,2.3)</version>
        </dependency>

        <!-- A "soft" dependency on the Servlet API. -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.2</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>[6,7)</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.caliper</groupId>
            <artifactId>caliper</artifactId>
            <version>1.0-beta-1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>6</source>
                    <target>6</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.15</version>
                <configuration>
                    <skipTests>${skipTests}</skipTests>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.4</version>
                        <configuration>
                            <defaultKeyring>false</defaultKeyring>
                            <keyname>Dropbox API Team</keyname>
                            <secretKeyring>${gpg.keyring}</secretKeyring>
                        </configuration>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <skipTests>true</skipTests>
    </properties>
</project>

POM Entry

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

Download

If you think the following dropbox-core-sdk-1.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download dropbox-core-sdk-1.7.jar file




PreviousNext

Related