<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">
  <parent>
    <groupId>org.jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>5</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jboss.cluster</groupId>
  <artifactId>jboss-ha-server-cache-spi</artifactId>
  <packaging>jar</packaging>
  <version>3.0.0.Beta1</version>
  <name>JBoss AS - JBoss Cache Integration SPI</name>
  <url>http://www.jboss.org</url>
  <description>SPI for JBoss AS Clustered Caching Services</description>
  <licenses>
    <license>
      <name>lgpl</name>
      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
    </license>
  </licenses>
  <organization>
    <name>JBoss, a division of Red Hat, Inc.</name>
    <url>http://www.jboss.org</url>
  </organization>
  
  <scm>
    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/cluster/ha-server-cache-spi/tags/3.0.0.Beta1</connection>
    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-cache-spi/tags/3.0.0.Beta1</developerConnection>
    <url>http://fisheye.jboss.org/browse/JBossAS/projects/cluster/ha-server-cache-spi/tags/3.0.0.Beta1</url>
  </scm>
  
  <properties>
    <version.jboss.ha.server.api>2.0.0.Beta1</version.jboss.ha.server.api>
    <version.jgroups>2.10.1.GA</version.jgroups>
    <version.org.jboss.naming>5.0.5.Final</version.org.jboss.naming>
    <version.org.jboss.metadata.war>2.0.0.Alpha15</version.org.jboss.metadata.war>
    <version.junit>4.8.2</version.junit>
    <version.easymock>3.0</version.easymock>
  </properties>
  
  <dependencies> 
    
    <!-- Global dependencies -->
    <dependency>
      <groupId>org.jboss.cluster</groupId>
      <artifactId>jboss-ha-server-api</artifactId>
      <version>${version.jboss.ha.server.api}</version>
    </dependency>
    
    <dependency>
      <groupId>org.jgroups</groupId>
      <artifactId>jgroups</artifactId>
      <version>${version.jgroups}</version>
    </dependency>
    
    <dependency>
      <groupId>org.jboss.naming</groupId>
      <artifactId>jnp-client</artifactId>
      <version>${version.org.jboss.naming}</version>
    </dependency>
    
    <dependency>
      <groupId>org.jboss.metadata</groupId>
      <artifactId>jboss-metadata-war</artifactId>
      <version>${version.org.jboss.metadata.war}</version>
    </dependency>
    
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${version.junit}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymock</artifactId>
      <version>${version.easymock}</version>
      <scope>test</scope>
    </dependency>
    
  </dependencies>  

</project>

