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:20 UTC

svn commit: r719482 - /myfaces/core/trunk/impl/pom.xml

Author: lu4242
Date: Thu Nov 20 21:38:19 2008
New Revision: 719482

URL: http://svn.apache.org/viewvc?rev=719482&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/impl/pom.xml

Modified: myfaces/core/trunk/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/pom.xml?rev=719482&r1=719481&r2=719482&view=diff
==============================================================================
--- myfaces/core/trunk/impl/pom.xml (original)
+++ myfaces/core/trunk/impl/pom.xml Thu Nov 20 21:38:19 2008
@@ -146,10 +146,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>
@@ -165,8 +173,7 @@
         <id>unpack-shared</id>
         <activation>
             <property>
-                <name>performRelease</name>
-                <value>true</value>
+                <name>!dev</name>
             </property>
         </activation>
         <build>