[infinispan-commits] Infinispan SVN: r1858 - trunk/cachestore/remote.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Wed May 26 04:57:27 EDT 2010


Author: mircea.markus
Date: 2010-05-26 04:57:27 -0400 (Wed, 26 May 2010)
New Revision: 1858

Added:
   trunk/cachestore/remote/pom.xml
Log:
added missing pom.xml

Added: trunk/cachestore/remote/pom.xml
===================================================================
--- trunk/cachestore/remote/pom.xml	                        (rev 0)
+++ trunk/cachestore/remote/pom.xml	2010-05-26 08:57:27 UTC (rev 1858)
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<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>org.infinispan</groupId>
+      <artifactId>infinispan-cachestore-parent</artifactId>
+      <version>4.1.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
+   <artifactId>infinispan-cachestore-remote</artifactId>
+   <name>Infinispan remote CacheStore</name>
+   <description>Infinispan remote CacheStore based on Hotrod protocol</description>
+   <properties>
+   </properties>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.infinispan</groupId>
+         <artifactId>infinispan-client-hotrod</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.infinispan</groupId>
+         <artifactId>infinispan-client-hotrod</artifactId>
+         <version>${project.version}</version>
+         <classifier>tests</classifier>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>${project.groupId}</groupId>
+         <artifactId>infinispan-server-hotrod</artifactId>
+         <version>${project.version}</version>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>${project.groupId}</groupId>
+         <artifactId>infinispan-server-hotrod</artifactId>
+         <version>${project.version}</version>
+         <type>test-jar</type>
+         <scope>test</scope>
+      </dependency>
+   </dependencies>
+</project>



More information about the infinispan-commits mailing list