<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>
   <groupId>org.jboss.unit</groupId>
   <artifactId>module-aggregator</artifactId>
   <packaging>pom</packaging>
   <name>JBoss Portal Modules Test</name>
   <version>1.2.0-Beta1</version>
   <url>http://labs.jboss.com/jbossportal</url>

   <dependencies/>

   <distributionManagement>
      <repository>
         <!--Copy the distribution jar file to a local checkout of the maven repository-->
         <!---  This variable can be set in $MAVEN_HOME/conf/settings.xml-->
         <id>repository.jboss.org</id>
         <url>file://${jboss.repository.root}</url>
      </repository>
      <snapshotRepository>
         <id>snapshots.jboss.org</id>
         <name>JBoss Snapshot Repository</name>
         <url>dav:https://snapshots.jboss.org/maven2</url>
         <uniqueVersion>true</uniqueVersion>
      </snapshotRepository>
   </distributionManagement>

   <modules>
      <module>build</module>
      <module>unit</module>
      <module>tooling</module>
      <module>mc</module>
      <module>remote</module>
      <module>test/core</module>
      <module>test/opends</module>
      <module>test/generic</module>
      <module>test/jboss</module>
      <module>test/agent</module>
   </modules>

</project>
