You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2008/11/21 06:38:31 UTC

svn commit: r719483 - /myfaces/core/trunk_1.2.x/impl/pom.xml

Author: lu4242
Date: Thu Nov 20 21:38:31 2008
New Revision: 719483

URL: http://svn.apache.org/viewvc?rev=719483&view=rev
Log:
MYFACES-2037 Activate add shared dependency to myfaces core impl instead unpack shared using a property different to -DperformRelease=true

Modified:
    myfaces/core/trunk_1.2.x/impl/pom.xml

Modified: myfaces/core/trunk_1.2.x/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/impl/pom.xml?rev=719483&r1=719482&r2=719483&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/impl/pom.xml (original)
+++ myfaces/core/trunk_1.2.x/impl/pom.xml Thu Nov 20 21:38:31 2008
@@ -185,10 +185,18 @@
   </build>
   <profiles>
     <profile>
+        <!-- This profile use a shared dependency rather than unpack the
+        code directly. The ideal is that this profile is active when the
+        version of this library is snapshot, but unfortunately there is
+        no way to activate it (see http://jira.codehaus.org/browse/MNG-3826).
+        Existing problems on maven 2.0.x architecture makes impossible do it.
+        For now the solution is trigger it manually using the property
+        -Ddev=true -->
         <id>add-shared-dependency</id>
         <activation>
             <property>
-                <name>!performRelease</name>
+                <name>dev</name>
+                <value>true</value>
             </property>
         </activation>
         <dependencies>