Skip to content

How to Setup Java Project?

ITS Labs edited this page Feb 15, 2014 · 1 revision

###Setup in your Java Project

####Maven Project

  • open pom.xml

  • add the repository below

<repositories>
  <repository>
        <id>easyJavaDropboxAPI</id>
        <url>https://raw.github.com/ITSStartup/easyJavaDropboxAPI/mvn-repo</url>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </repository>
</repositories>
  • add the dependency
<dependencies>
		<dependency>
			<groupId>com.its.api</groupId>
			<artifactId>easyJavaDropboxAPI</artifactId>
			<version>1.0.0</version>
		</dependency>
	</dependencies>

Clone this wiki locally