<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-ispn</artifactId>
  <packaging>jar</packaging>
  <version>1.0.0.Alpha2</version>
  <name>JBoss AS - Infinispan Integration Implementation</name>
  <url>http://www.jboss.org</url>
  <description>An Infinispan-based implementation of the SPIs defined in ha-server-cache-spi</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-ispn/tags/1.0.0.Alpha2</connection>
    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-cache-ispn/tags/1.0.0.Alpha2</developerConnection>
    <url>http://fisheye.jboss.org/browse/JBossAS/projects/cluster/ha-server-cache-ispn/tags/1.0.0.Alpha2</url>
  </scm>
  
  <properties>
    <version.jboss.ha.server.cache.spi>3.0.0.Alpha3</version.jboss.ha.server.cache.spi>
    <version.jboss.ha.server.ispn>1.0.0.Alpha1</version.jboss.ha.server.ispn>
    <version.junit>4.8.1</version.junit>
    <version.easymock>3.0</version.easymock>
  </properties>
  
  <dependencies> 
    
    <!-- Global dependencies -->
    <dependency>
      <groupId>org.jboss.cluster</groupId>
      <artifactId>jboss-ha-server-cache-spi</artifactId>
      <version>${version.jboss.ha.server.cache.spi}</version>
    </dependency>

    <dependency>
      <groupId>org.jboss.cluster</groupId>
      <artifactId>jboss-ha-server-ispn</artifactId>
      <version>${version.jboss.ha.server.ispn}</version>
    </dependency>
    
    <!-- Test dependencies -->
    
    <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>   
  
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.3.1</version>
      </plugin>
    </plugins>
  </reporting>

</project>
