<?xml version="1.0"?>
<!--
A top level maven pom that expects a structure like: 
  build/pom.xml
  ha-client/pom.xml
  ha-server-api/pom.xml

This can be done using:  
svn co https://svn.jboss.org/repos/jbossas/projects/cluster/build/trunk/ build
svn co https://svn.jboss.org/repos/jbossas/projects/cluster/ha-client/trunk ha-client
svn co https://svn.jboss.org/repos/jbossas/projects/cluster/ha-server-api/trunk/ ha-server-api
-->
<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-cluster</artifactId>
  <packaging>pom</packaging>
  <version>3.0.0.Final</version>
  <name>JBoss Cluster Build</name>
  <url>http://www.jboss.org</url>
  <description>JBoss Cluster Parent POM</description>
  
  <scm>
    <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/build/tags/3.0.0.Final</connection>
    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/cluster/build/tags/3.0.0.Final</developerConnection>
    <url>http://fisheye.jboss.org/browse/JBossAS/projects/cluster/build/tags/3.0.0.Final</url>
  </scm>

  <properties>
    <version.junit>3.8.1</version.junit>
  </properties>
  
  <build>
    <finalName>${artifactId}</finalName>  
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <printSummary>true</printSummary>
          <disableXmlReport>false</disableXmlReport>
          <!--<testFailureIgnore>true</testFailureIgnore>-->
          <includes>
            <include>**/*TestCase.java</include>
          </includes>
        </configuration>
      </plugin> 
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <!-- The tagBase property is needed during the release process so that the maven release plugin
            will create the release tag in the appropriate location. -->
          <tagBase>https://svn.jboss.org/repos/jbossas/projects/cluster/build/tags</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <reportSets>
          <reportSet>
            <reports>
              <report>dependencies</report>
              <report>issue-tracking</report>
              <report>license</report>
              <report>scm</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>
    </plugins>
  </reporting>
  
</project>
