You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sc...@apache.org on 2006/02/14 00:44:38 UTC

svn commit: r377537 - in /myfaces: core/trunk/api/pom.xml core/trunk/impl/pom.xml core/trunk/pom.xml tomahawk/trunk/core/pom.xml tomahawk/trunk/examples/pom.xml tomahawk/trunk/sandbox/core/pom.xml tomahawk/trunk/sandbox/examples/pom.xml

Author: schof
Date: Mon Feb 13 15:44:36 2006
New Revision: 377537

URL: http://svn.apache.org/viewcvs?rev=377537&view=rev
Log:
fixed some pom dependency issues; changed tomhawk myfaces-api and myfaces-impl dependencies to provided since tomahawk can be used with RI and users may no want these included as transitive dependencies

Modified:
    myfaces/core/trunk/api/pom.xml
    myfaces/core/trunk/impl/pom.xml
    myfaces/core/trunk/pom.xml
    myfaces/tomahawk/trunk/core/pom.xml
    myfaces/tomahawk/trunk/examples/pom.xml
    myfaces/tomahawk/trunk/sandbox/core/pom.xml
    myfaces/tomahawk/trunk/sandbox/examples/pom.xml

Modified: myfaces/core/trunk/api/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/api/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/core/trunk/api/pom.xml (original)
+++ myfaces/core/trunk/api/pom.xml Mon Feb 13 15:44:36 2006
@@ -15,7 +15,7 @@
   <parent>
     <groupId>org.apache.myfaces.core</groupId>
     <artifactId>myfaces-core-project</artifactId>
-    <version>1.1.2-SNAPSHOT</version>
+    <version>1.1.3-SNAPSHOT</version>
   </parent>
 
   <scm>

Modified: myfaces/core/trunk/impl/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/impl/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/core/trunk/impl/pom.xml (original)
+++ myfaces/core/trunk/impl/pom.xml Mon Feb 13 15:44:36 2006
@@ -14,7 +14,7 @@
   <parent>
     <groupId>org.apache.myfaces.core</groupId>
     <artifactId>myfaces-core-project</artifactId>
-    <version>1.1.2-SNAPSHOT</version>
+    <version>1.1.3-SNAPSHOT</version>
   </parent>
 
   <scm>

Modified: myfaces/core/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/core/trunk/pom.xml (original)
+++ myfaces/core/trunk/pom.xml Mon Feb 13 15:44:36 2006
@@ -6,7 +6,7 @@
   <groupId>org.apache.myfaces.core</groupId>
   <artifactId>myfaces-core-project</artifactId>
   <packaging>pom</packaging>
-  <version>1.1.2-SNAPSHOT</version>
+  <version>1.1.3-SNAPSHOT</version>
   <name>Core Project</name>
   <url>http://myfaces.apache.org/projects</url>
 

Modified: myfaces/tomahawk/trunk/core/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/core/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/pom.xml (original)
+++ myfaces/tomahawk/trunk/core/pom.xml Mon Feb 13 15:44:36 2006
@@ -23,9 +23,22 @@
 
     <dependency>
       <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
       <artifactId>myfaces-impl</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
-      <scope>compile</scope>
+      <version>1.1.3-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.commons</groupId>
+      <artifactId>myfaces-commons</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
     </dependency>
 
     <dependency>

Modified: myfaces/tomahawk/trunk/examples/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/examples/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/pom.xml Mon Feb 13 15:44:36 2006
@@ -31,8 +31,17 @@
       <groupId>org.apache.myfaces.tomahawk</groupId>
       <artifactId>tomahawk</artifactId>
       <version>${version}</version>
-      <scope>compile</scope>
     </dependency> 
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-impl</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
+    </dependency>    
   </dependencies>
 
 </project>

Modified: myfaces/tomahawk/trunk/sandbox/core/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/sandbox/core/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/core/pom.xml Mon Feb 13 15:44:36 2006
@@ -29,8 +29,28 @@
     <dependency>
       <groupId>org.apache.myfaces.tomahawk</groupId>
       <artifactId>tomahawk</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
+      <version>${version}</version>
       <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-impl</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.commons</groupId>
+      <artifactId>myfaces-commons</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
     </dependency>
 
     <dependency>

Modified: myfaces/tomahawk/trunk/sandbox/examples/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/sandbox/examples/pom.xml?rev=377537&r1=377536&r2=377537&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/pom.xml Mon Feb 13 15:44:36 2006
@@ -44,7 +44,16 @@
       <groupId>org.apache.myfaces.tomahawk</groupId>
       <artifactId>tomahawk-sandbox</artifactId>
       <version>${version}</version>
-      <scope>compile</scope>
+    </dependency> 
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-impl</artifactId>
+      <version>1.1.3-SNAPSHOT</version>
+    </dependency>        
   </dependencies>
 </project>