<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.webbeans</groupId>
   <artifactId>webbeans-build-aggregator</artifactId>
   <packaging>pom</packaging>
   <version>1.0.0.PREVIEW2-PATCH2.SP1</version>

   <name>Web Beans Build Aggregator</name>
   <url>http://www.seamframework.org/WebBeans</url>

   <scm>
      <connection>scm:svn:http://anonsvn.jboss.org/repos/webbeans/ri/tags/1.0.0.PREVIEW2-PATCH2.SP1</connection>
      <developerConnection>scm:svn:https://svn.jboss.org/repos/webbeans/ri/tags/1.0.0.PREVIEW2-PATCH2.SP1</developerConnection>
      <url>http://fisheye.jboss.org/browse/WebBeans/tags/1.0.0.PREVIEW2-PATCH2.SP1</url>
   </scm>

   <distributionManagement>
      <repository>
         <!--
            Copy the  dist to the local checkout of the JBoss maven2 repo
            ${maven.repository.root}
         -->
         <!--
            It is anticipated that ${maven.repository.root} be set in user's
            settings.xml
         -->
         <!--
            todo : replace this with direct svn access once the svnkit providers
            are available
         -->
         <id>repository.jboss.org</id>
         <url>file://${maven.repository.root}</url>
      </repository>
      <snapshotRepository>
         <id>snapshots.jboss.org</id>
         <name>JBoss Snapshot Repository</name>
         <url>dav:https://snapshots.jboss.org/maven2</url>
      </snapshotRepository>
   </distributionManagement>

   <profiles>
      <profile>
         <id>apis-only</id>
         <activation>
            <property>
               <name>apis-only</name>
            </property>
         </activation>
         <modules>
            <module>version-matrix</module>
            <module>parent</module>
            <module>api</module>
            <module>spi</module>
            <module>core-api</module>
         </modules>
      </profile>
      <profile>
         <id>default</id>
         <activation>
            <activeByDefault>true</activeByDefault>
         </activation>
         <modules>
            <module>version-matrix</module>
            <module>parent</module>
            <module>api</module>
            <module>spi</module>
            <module>core-api</module>
            <module>logging</module>
            <module>impl</module>
            <module>tests</module>
            <module>porting-package</module>
            <module>jboss-tck-runner</module>
            <module>osgi-bundle</module>
         </modules>
      </profile>
      
   </profiles>

   <build>

      <pluginManagement>
         <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-release-plugin</artifactId>
              <version>2.0-beta-9</version>
            </plugin>
         </plugins>
      </pluginManagement>
   </build>

</project>
