<?xml version="1.0" encoding="UTF-8"?>
<!--
  The parent maven for the jndi naming server project

  This pom aggregates the subproject pom
  
  To build this project maven 2 should be installed and in the system path.  From the command line
  run "mvn" from the build directory and "install" will be used as the default goal.  In order to use 
  the "deploy" goal, the mvn.cvs.root should be specified in settings.xml.
-->
<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>3</version>
  </parent>
  <groupId>org.jboss.naming</groupId>
  <artifactId>jboss-naming-build</artifactId>
  <version>5.0.3.GA</version>
  <packaging>pom</packaging>
  <name>JBoss Naming Build</name>
  <url>http://www.jboss.com/products/jbossmc</url>
  <description>The JBoss JNDI name server implementation</description>
  <scm>
    <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/naming/tags/5.0.3.GA</connection>
  </scm>

  <modules>
    <module>jnpserver</module>  
    <module>jnpclient</module>
  </modules>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0-beta-7</version>
        <configuration>
          <tagBase>https://svn.jboss.org/repos/jbossas/projects/naming/tags</tagBase>
          <autoVersionSubmodules>true</autoVersionSubmodules>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
</project>

