Author: pete.muir(a)jboss.org
Date: 2009-03-11 09:33:07 -0400 (Wed, 11 Mar 2009)
New Revision: 1916
Modified:
ri/trunk/pom.xml
Log:
add an APIs only profile
Modified: ri/trunk/pom.xml
===================================================================
--- ri/trunk/pom.xml 2009-03-11 13:17:49 UTC (rev 1915)
+++ ri/trunk/pom.xml 2009-03-11 13:33:07 UTC (rev 1916)
@@ -1,4 +1,5 @@
-<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">
+<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>
@@ -12,12 +13,12 @@
<module>version-matrix</module>
<module>parent</module>
<module>api</module>
+ <module>spi</module>
<module>impl</module>
- <module>spi</module>
<module>porting-package</module>
<module>jboss-tck-runner</module>
</modules>
-
+
<scm>
<
connection>scm:svn:http://anonsvn.jboss.org/repos/webbeans/ri</conn...
<developerConnection>
@@ -28,9 +29,18 @@
<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 -->
+ <!--
+ 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>
@@ -40,6 +50,23 @@
<
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>
+ </modules>
+ </profile>
+ </profiles>
+
+
</project>