Author: jbalunas(a)redhat.com
Date: 2010-08-18 11:31:48 -0400 (Wed, 18 Aug 2010)
New Revision: 18763
Modified:
trunk/bom/pom.xml
Log:
Added myfaces snapshot support to options -
http://community.jboss.org/wiki/RichFaces40BuildOptions
Modified: trunk/bom/pom.xml
===================================================================
--- trunk/bom/pom.xml 2010-08-18 15:24:53 UTC (rev 18762)
+++ trunk/bom/pom.xml 2010-08-18 15:31:48 UTC (rev 18763)
@@ -18,8 +18,7 @@
http://www.fsf.org.
-->
<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"
->
+
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.richfaces</groupId>
@@ -225,7 +224,6 @@
</dependencyManagement>
<profiles>
-
<!--
The following profiles determine the JSF api/impl
combinations that will be used in the project builds.
@@ -296,6 +294,29 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>myfaces_snapshot</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>myfaces_snapshot</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ </profile>
</profiles>
<scm>