You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2006/02/28 13:01:57 UTC

svn commit: r381640 - /myfaces/tomahawk/branches/1_1_2/core/pom.xml

Author: manolito
Date: Tue Feb 28 04:01:53 2006
New Revision: 381640

URL: http://svn.apache.org/viewcvs?rev=381640&view=rev
Log:
added missing commons-logging dependency,
rearranged and grouped dependencies

Modified:
    myfaces/tomahawk/branches/1_1_2/core/pom.xml

Modified: myfaces/tomahawk/branches/1_1_2/core/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/branches/1_1_2/core/pom.xml?rev=381640&r1=381639&r2=381640&view=diff
==============================================================================
--- myfaces/tomahawk/branches/1_1_2/core/pom.xml (original)
+++ myfaces/tomahawk/branches/1_1_2/core/pom.xml Tue Feb 28 04:01:53 2006
@@ -21,23 +21,44 @@
 
   <dependencies>
 
+    <!-- compile dependencies -->
+
     <dependency>
-      <groupId>org.apache.myfaces.core</groupId>
-      <artifactId>myfaces-api</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
-      <scope>provided</scope>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-validator</groupId>
+      <artifactId>commons-validator</artifactId>
+      <version>1.2.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>struts</groupId>
+      <artifactId>struts</artifactId>
+      <version>1.2.8</version>
+      <scope>compile</scope>
+      <optional>true</optional>
     </dependency>
 
+    <!-- provided dependencies -->
+
     <dependency>
       <groupId>org.apache.myfaces.core</groupId>
-      <artifactId>myfaces-impl</artifactId>
+      <artifactId>myfaces-api</artifactId>
       <version>1.1.2-SNAPSHOT</version>
-      <!--
-        Since Tomahawk must stay compatible to other JSF implementations we
-        must not have any (compile time) dependency on myfaces-impl other than
-        test classes.
-      -->
-      <scope>test</scope>
+      <scope>provided</scope>
     </dependency>
 
     <dependency>
@@ -47,18 +68,6 @@
       <!-- classes will be directly included in tomahawk.jar -->
       <scope>provided</scope>
     </dependency>
-    <dependency>
-      <groupId>commons-el</groupId>
-      <artifactId>commons-el</artifactId>
-      <version>1.0</version>
-      <scope>runtime</scope> <!-- needed by shared classes -->
-    </dependency>
-    <dependency>
-      <groupId>commons-codec</groupId>
-      <artifactId>commons-codec</artifactId>
-      <version>1.3</version>
-      <scope>runtime</scope> <!-- needed by shared classes -->
-    </dependency>
 
     <dependency>
       <groupId>javax.servlet</groupId>
@@ -75,32 +84,39 @@
     </dependency>
 
     <dependency>
-      <groupId>commons-validator</groupId>
-      <artifactId>commons-validator</artifactId>
-      <version>1.2.0</version>
-      <scope>compile</scope>
+      <groupId>portlet-api</groupId>
+      <artifactId>portlet-api</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
     </dependency>
 
+    <!-- runtime dependencies -->
+ 
     <dependency>
-      <groupId>commons-fileupload</groupId>
-      <artifactId>commons-fileupload</artifactId>
+      <groupId>commons-el</groupId>
+      <artifactId>commons-el</artifactId>
       <version>1.0</version>
-      <scope>compile</scope>
+      <scope>runtime</scope> <!-- needed by shared classes -->
     </dependency>
-
     <dependency>
-      <groupId>portlet-api</groupId>
-      <artifactId>portlet-api</artifactId>
-      <version>1.0</version>
-      <scope>provided</scope>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.3</version>
+      <scope>runtime</scope> <!-- needed by shared classes -->
     </dependency>
 
+    <!-- test dependencies -->
+
     <dependency>
-      <groupId>struts</groupId>
-      <artifactId>struts</artifactId>
-      <version>1.2.8</version>
-      <scope>compile</scope>
-      <optional>true</optional>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-impl</artifactId>
+      <version>1.1.2-SNAPSHOT</version>
+      <!--
+        Since Tomahawk must stay compatible to other JSF implementations we
+        must not have any (compile time) dependency on myfaces-impl other than
+        test classes.
+      -->
+      <scope>test</scope>
     </dependency>
 
     <dependency>