Download dropbox-core-sdk-1.7.7.jar file

Introduction

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

License

MIT

Type List

dropbox-core-sdk-1.7.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.DbxOAuth1AccessToken.class
com.dropbox.core.DbxOAuth1Upgrader.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.SSLConfig.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
com/dropbox/core/http/trusted-certs.jks

Pom

dropbox-core-sdk-1.7.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.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>

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

    <!-- Checker Framework repositories (the Maven Central artifacts aren't always up to date) -->
    <repositories>
        <repository>
            <id>checker-framework-repo</id>
            <url>http://types.cs.washington.edu/m2-repo</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>checker-framework-repo</id>
            <url>http://types.cs.washington.edu/m2-repo</url>
        </pluginRepository>
    </pluginRepositories>

    <dependencies>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>[2.2,2.4)</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>
        <resources>
            <resource>
                <directory>${project.build.directory}/generated-resources/pem-to-jks</directory>
            </resource>
        </resources>
        <testSourceDirectory>test</testSourceDirectory>
        <testResources>
            <testResource>
                <directory>test</directory>
            </testResource>
        </testResources>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>6</source>
                    <target>6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>animal-sniffer-maven-plugin</artifactId>
                <version>1.11</version>
                <configuration>
                    <signature>
                        <groupId>org.codehaus.mojo.signature</groupId>
                        <artifactId>java16</artifactId>
                        <version>1.0</version>
                    </signature>
                </configuration>
                <executions>
                    <execution>
                        <id>check-java-version-compatibility</id>
                        <phase>test</phase>
                        <goals>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
                <executions>
                    <execution>
                        <id>attach-javadoc</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <id>copy</id>
                        <phase>package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target>
                                <copy file="pom.xml" tofile="${project.build.directory}/${project.build.finalName}.pom" />
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.15</version>
                <configuration>
                    <skipTests>${skipTests}</skipTests>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.dropbox.maven</groupId>
                <artifactId>pem-to-jks-maven-plugin</artifactId>
                <version>1.0</version>
                <executions>
                    <execution>
                        <configuration>
                            <inputPem>src/com/dropbox/core/http/trusted-certs.crt</inputPem>
                            <outputJks>${project.build.directory}/generated-resources/pem-to-jks/com/dropbox/core/http/trusted-certs.jks</outputJks>
                        </configuration>
                        <goals>
                            <goal>convert</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <!-- Add OSGi metadata to JAR manifest. -->
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <archive>
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.5.0</version>
                <extensions>true</extensions>
                <executions>
                    <execution>
                        <id>bundle-manifest</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>manifest</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <!-- Checker Framework -->
            <plugin>
                <groupId>types.checkers</groupId>
                <artifactId>checkers-maven-plugin</artifactId>
                <version>1.7.3</version>
                <configuration>
                    <processors>
                        <processor>checkers.nullness.NullnessChecker</processor>
                    </processors>
                    <!--
                        "-AassumeSideEffectFree"
                            This is unsound, but makes it easier to get started.
                        "-AsuppressWarnings=purity.invalid.overriding"
                            Purity warnings are noisy right now, so disable them.
                        TODO:
                            Add "-AinvariantArrays" when it's fixed: https://code.google.com/p/checker-framework/issues/detail?id=299
                    -->
                    <javacParams>-AstubWarnIfNotFound -Astubs=support/checker-framework-stubs -AassumeSideEffectFree -AsuppressWarnings=purity.invalid.overriding -AprintErrorStack</javacParams>
                </configuration>
            </plugin>

            <!-- FindBugs -->
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>findbugs-maven-plugin</artifactId>
                <version>2.5.3</version>
                <configuration>
                    <effort>max</effort>
                    <threshold>low</threshold>
                    <xmlOutput>true</xmlOutput>
                    <excludeFilterFile>support/findbugs-exclude.xml</excludeFilterFile>
                </configuration>
            </plugin>

            <!-- Write test classpath to a file. -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <configuration>
                    <outputFile>${project.build.directory}/test-classpath</outputFile>
                    <includeScope>test</includeScope>
                </configuration>
                <executions>
                    <execution>
                        <phase>test-compile</phase>
                        <goals>
                            <goal>build-classpath</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

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

Download

If you think the following dropbox-core-sdk-1.7.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.7.jar file




PreviousNext

Related