dropbox-java-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.syncthemall</groupId> <artifactId>dropbox-java-sdk</artifactId> <version>1.5.3.2</version> </dependency>
<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> <groupId>com.syncthemall</groupId> <artifactId>dropbox-java-sdk</artifactId> <packaging>jar</packaging> <version>1.5.3.2</version> <name>dropbox-client</name> <description> The Dropbox API for Java is a Dropbox supported client library for accessing the JSON+REST interface to Dropbox. It supports OAuth proxied authentication. It is designed to be simple and easy to use, as well as instructional in case you want to write your own. It is MIT licensed. </description> <url>http://www.dropbox.com/developers/</url> <licenses> <license> <name>MIT</name> <url>LICENSE</url> <distribution>repo</distribution> <comments> The MIT License is a free software license originating at the Massachusetts Institute of Technology (MIT), used by the MIT X Consortium. </comments> </license> </licenses> <scm> <connection>scm:git:git@github.com:vanduynslagerp/dropbox-java-sdk.git</connection> <developerConnection>scm:git:git@github.com:vanduynslagerp/dropbox-java-sdk.git</developerConnection> <url>https://github.com/vanduynslagerp/dropbox-java-sdk</url> </scm> <organization> <name>Dropbox Inc.</name> <url>http://www.dropbox.com/</url> </organization> <developers> <developer> <id>tm</id> <name>Tom Meyer</name> <email>tm@dropbox.com</email> <url>http://dropbox.com/</url> <organization>Dropbox</organization> <organizationUrl>http://dropbox.com/</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-8</timezone> </developer> <developer> <id>alex</id> <name>Alex Sydell</name> <email>alex@dropbox.com</email> <url>http://dropbox.com/</url> <organization>Dropbox</organization> <organizationUrl>http://dropbox.com/</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.htmlunit</groupId> <artifactId>htmlunit</artifactId> <version>2.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.2.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.2.4</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> </dependency> </dependencies> <build> <defaultGoal>package</defaultGoal> <finalName>${project.artifactId}-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <source>${source.version}</source> <target>${source.version}</target> </configuration> </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-release-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>nexus-releases</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <source.version>1.6</source.version> </properties> </project>