Author: wsmoak
Date: Mon Jun 12 06:18:01 2006
New Revision: 413650

URL: http://svn.apache.org/viewvc?rev=413650&view=rev
Log:
[SHALE-179] Changed the profile activation strategy for building with MyFaces 
vs. JSF RI.
MyFaces is now the default.  To build with the RI, use -Djsf=ri on the command 
line.
Suggested By: Roland Asmann <Roland.Asmann -at- cfc.at>

Modified:
    struts/shale/branches/mvn_reorg/pom.xml

Modified: struts/shale/branches/mvn_reorg/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/pom.xml?rev=413650&r1=413649&r2=413650&view=diff
==============================================================================
--- struts/shale/branches/mvn_reorg/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/pom.xml Mon Jun 12 06:18:01 2006
@@ -70,10 +70,8 @@
         <profile>
             <id>myfaces</id>
             <activation>
-                <activeByDefault>true</activeByDefault>
                 <property>
-                    <name>maven.shale.jsf.impl</name>
-                    <value>myfaces</value>
+                    <name>!jsf</name>
                 </property>
             </activation>
             <dependencies>
@@ -110,8 +108,8 @@
             <id>jsfri</id>
             <activation>
                 <property>
-                    <name>maven.shale.jsf.impl</name>
-                    <value>jsfri</value>
+                    <name>jsf</name>
+                    <value>ri</value>
                 </property>
             </activation>
             <dependencies>
@@ -192,7 +190,7 @@
             -->
             </plugins>
         </pluginManagement>
-                
+
         <extensions>
             <extension>
                 <groupId>org.apache.struts</groupId>
@@ -200,9 +198,9 @@
                 <version>1.0.1</version>
             </extension>
         </extensions>
-        
+
         <defaultGoal>install</defaultGoal>
-        
+
     </build>
 
     <reporting>


Reply via email to