<?xml version="1.0" encoding="UTF-8"?>
<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>
	<parent>
    		<groupId>org.sonatype.oss</groupId>
    		<artifactId>oss-parent</artifactId>
    		<version>7</version>
  	</parent>
	<scm>
    		<connection>scm:git:git@github.com:box/box-java-sdk-v2.git</connection>
    		<developerConnection>scm:git:git@github.com:box/box-java-sdk-v2.git</developerConnection>
    		<url>git@github.com:box/box-java-sdk-v2.git</url>
  	</scm>

	<groupId>net.box</groupId>
	<artifactId>boxjavalibv2</artifactId>
	<version>v3.0.10</version>
	<packaging>jar</packaging>
	<name>Box Java Lib v2</name>
  	<description>The java sdk for Box api</description>
	<url>http://www.box.com</url>
	<licenses>
    		<license>
      			<name>The Apache Software License, Version 2.0</name>
      			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      			<distribution>repo</distribution>
    		</license>
  	</licenses>
	<developers>
		<developer>
			<id>boxandroidteam</id>
			<name>box android</name>
			<email>boxandroidteam@gmail.com</email>
		</developer>
	</developers>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<!--<dependencyManagement>-->
	<dependencies>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-annotations</artifactId>
			<version>2.2.2</version>
		</dependency>

		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-core</artifactId>
			<version>2.2.2</version>
		</dependency>

		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
			<version>2.2.2</version>
		</dependency>

		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
			<version>1.8</version>
		</dependency>

		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
		</dependency>

		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.6</version>
		</dependency>

		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient-cache</artifactId>
			<version>4.2.5</version>
		</dependency>

		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.2.5</version>
		</dependency>

		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpcore</artifactId>
			<version>4.2.5</version>
		</dependency>

		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpmime</artifactId>
			<version>4.2.5</version>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
		</dependency>

		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>3.1</version>
		</dependency>
	</dependencies>

	<distributionManagement>
		<repository>
			<id>sonatype-nexus-staging</id>
			<name>Sonatype Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
		</repository>
		<snapshotRepository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype Snapshot</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>

	<build>
		<sourceDirectory> BoxJavaLibraryV2/src</sourceDirectory>
		<plugins>
			<plugin>
			  	<groupId>org.apache.maven.plugins</groupId>
			  	<artifactId>maven-gpg-plugin</artifactId>
			  	<executions>
					<execution>
				  		<id>sign-artifacts</id>
						<phase>verify</phase>
			  			<goals>
							<goal>sign</goal>
			 		 	</goals>
					</execution>
		  		</executions>
			</plugin>
			<plugin>
		  		<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
		  		<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>
		  		<executions>
					<execution>
			  			<id>attach-javadocs</id>
			  			<goals>
							<goal>jar</goal>
			  			</goals>
					</execution>
		  		</executions>
			</plugin>
			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-release-plugin</artifactId>
    				<configuration>
       	 				<checkModificationExcludes>
            					<checkModificationExclude>pom.xml</checkModificationExclude>
        				</checkModificationExcludes>
    				</configuration>
    			</plugin>
		  </plugins>
	</build>
</project>