<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>net.sf.ehcache.x-platform</groupId>
        <artifactId>x-platform-parent</artifactId>
        <version>1.0.8</version>
    </parent>

    <artifactId>client-java</artifactId>

    <build>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.15</version>
          <configuration>
            <forkMode>always</forkMode>
            <argLine>-Xms256m -Xmx256m</argLine>
          </configuration>
        </plugin>
      </plugins>
    </build>

    <dependencies>
    	<dependency>
    		<groupId>net.sf.ehcache.x-platform</groupId>
    		<artifactId>thrift-java</artifactId>
    		<version>${project.version}</version>
    	</dependency>
    	<dependency>
    		<groupId>net.sf.ehcache.x-platform</groupId>
    		<artifactId>server-main</artifactId>
    		<version>${project.version}</version>
        <scope>test</scope>
    	</dependency>
    	<dependency>
    		<groupId>net.sf.ehcache</groupId>
    		<artifactId>ehcache</artifactId>
    		<version>${ehcache.version}</version>
        <scope>test</scope>
    	</dependency>
    	<dependency>
    		<groupId>org.slf4j</groupId>
    		<artifactId>slf4j-api</artifactId>
    		<version>${slf4j.version}</version>
        <scope>test</scope>
    	</dependency>      
    	<dependency>
    		<groupId>org.slf4j</groupId>
    		<artifactId>slf4j-jdk14</artifactId>
    		<version>${slf4j.version}</version>
        <scope>test</scope>
    	</dependency>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.10</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <version>1.9.5</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.codehaus.jackson</groupId>
        <artifactId>jackson-mapper-asl</artifactId>
        <version>1.9.12</version>
        <scope>test</scope>
      </dependency>
    </dependencies>
</project>
