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/01/07 21:35:36 UTC

svn commit: r366904 - in /myfaces/sandbox/trunk: pom.xml sandbox-examples/ sandbox-examples/pom.xml sandbox/ sandbox/pom.xml

Author: schof
Date: Sat Jan  7 12:35:28 2006
New Revision: 366904

URL: http://svn.apache.org/viewcvs?rev=366904&view=rev
Log:
Updated poms from Bernd

Modified:
    myfaces/sandbox/trunk/pom.xml
    myfaces/sandbox/trunk/sandbox/   (props changed)
    myfaces/sandbox/trunk/sandbox-examples/   (props changed)
    myfaces/sandbox/trunk/sandbox-examples/pom.xml
    myfaces/sandbox/trunk/sandbox/pom.xml

Modified: myfaces/sandbox/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/pom.xml?rev=366904&r1=366903&r2=366904&view=diff
==============================================================================
--- myfaces/sandbox/trunk/pom.xml (original)
+++ myfaces/sandbox/trunk/pom.xml Sat Jan  7 12:35:28 2006
@@ -2,125 +2,20 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.myfaces</groupId>
-  <artifactId>myfaces-commons</artifactId>
-  <packaging>jar</packaging>
-  <name>MyFaces Commons</name>
-  <url>http://myfaces.apache.org</url>
+  <artifactId>myfaces-sandbox</artifactId>
+  <packaging>pom</packaging>
+  <name>MyFaces Sandbox</name>
+  <url>http://myfaces.apache.org</url> <!-- TODO which url has sandbox? --> 
   <description>
-  	This is the MyFaces Commons Subproject Description [INSERT MORE STUFF HERE]
+  	This is the MyFaces Sandbox Subproject Description [INSERT MORE STUFF HERE]
   </description>
   <parent>
     <groupId>org.apache.myfaces</groupId>
     <artifactId>myfaces</artifactId>
     <version>1.1.2-SNAPSHOT</version>
   </parent>
-  <dependencies>
-
-    <dependency>
-      <groupId>org.apache.myfaces</groupId>
-      <artifactId>myfaces-api</artifactId>
-       <version>${version}</version>
-			<scope>compile</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>jsp-api</artifactId>
-      <version>2.0</version>
-      <scope>provided</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.3</version>
-      <scope>provided</scope>
-    </dependency>    
-
-    <dependency>
-			<groupId>commons-el</groupId>
-			<artifactId>commons-el</artifactId>
-			<version>1.0</version>
-      <scope>compile</scope>
-    </dependency>   
-    
-    <dependency>
-    	<groupId>commons-codec</groupId>
-			<artifactId>commons-codec</artifactId>
-			<version>1.3</version> 
-      <scope>compile</scope>
-    </dependency>  
-    
-    <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-      <version>1.0.4</version>
-      <scope>compile</scope>
-    </dependency>      
-
-    <dependency>
-			<groupId>portlet-api</groupId>
-			<artifactId>portlet-api</artifactId>
-			<version>1.0</version>
-      <scope>compile</scope>
-    </dependency>       
-    
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>cactus</groupId>
-      <artifactId>cactus</artifactId>
-      <version>13-1.7.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>aspectj</groupId>
-      <artifactId>aspectjrt</artifactId>
-      <version>1.2.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <version>2.0.2</version>
-      <scope>test</scope>
-    </dependency>
-     
-    <dependency>
-      <groupId>httpunit</groupId>
-      <artifactId>httpunit</artifactId>
-      <version>1.6</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>nekohtml</groupId>
-      <artifactId>nekohtml</artifactId>
-      <version>0.9.1</version>
-      <scope>test</scope>
-    </dependency>   
-    
-    <dependency>
-		<groupId>easymock</groupId>
-		<artifactId>easymock</artifactId>
-		<version>1.1</version>
-	  <scope>test</scope>
-	</dependency>
-
-    <dependency>
-		<groupId>easymock</groupId>
-		<artifactId>easymockclassextension</artifactId>
-		<version>1.1</version>
-	  <scope>test</scope>			
-	</dependency>
-
-  </dependencies>
-  
+  <modules>
+    <module>sandbox</module>
+    <module>sandbox-examples</module>
+  </modules>
 </project>

Propchange: myfaces/sandbox/trunk/sandbox/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Jan  7 12:35:28 2006
@@ -0,0 +1 @@
+target

Propchange: myfaces/sandbox/trunk/sandbox-examples/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Jan  7 12:35:28 2006
@@ -0,0 +1 @@
+target

Modified: myfaces/sandbox/trunk/sandbox-examples/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox-examples/pom.xml?rev=366904&r1=366903&r2=366904&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox-examples/pom.xml (original)
+++ myfaces/sandbox/trunk/sandbox-examples/pom.xml Sat Jan  7 12:35:28 2006
@@ -16,16 +16,16 @@
  *    limitations under the License.
 -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
+<project xmlns="http://maven.apache.org/POM/4.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.myfaces</groupId>
-    <artifactId>myfaces-example</artifactId>
+    <artifactId>myfaces-sandbox</artifactId>
     <version>1.1.2-SNAPSHOT</version>
   </parent>
-  <artifactId>myfaces-example-sandbox</artifactId>
+  <artifactId>sandbox-examples</artifactId>
   <packaging>war</packaging>
   <name>MyFaces Examples: Sandbox</name>
   <build>
@@ -35,9 +35,9 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.myfaces</groupId>
-      <artifactId>myfaces-sandbox</artifactId>
+      <artifactId>sandbox</artifactId>
       <version>${version}</version>
       <scope>compile</scope>
-    </dependency> 
+    </dependency>
   </dependencies>
 </project>

Modified: myfaces/sandbox/trunk/sandbox/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/pom.xml?rev=366904&r1=366903&r2=366904&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/pom.xml (original)
+++ myfaces/sandbox/trunk/sandbox/pom.xml Sat Jan  7 12:35:28 2006
@@ -3,7 +3,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.apache.myfaces</groupId>
-    <artifactId>myfaces-sandbox</artifactId>
+    <artifactId>sandbox</artifactId>
     <packaging>jar</packaging>
     <name>MyFaces Sandbox</name>
     <url>http://myfaces.apache.org</url>
@@ -13,7 +13,7 @@
 
     <parent>
         <groupId>org.apache.myfaces</groupId>
-        <artifactId>myfaces</artifactId>
+        <artifactId>myfaces-sandbox</artifactId>
         <version>1.1.2-SNAPSHOT</version>
     </parent>
 
@@ -28,29 +28,8 @@
 
         <dependency>
             <groupId>org.apache.myfaces</groupId>
-            <artifactId>myfaces-api</artifactId>
-            <version>${version}</version>
-            <scope>compile</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.myfaces</groupId>
-            <artifactId>myfaces-commons</artifactId>
-             <version>${version}</version>
-            <scope>compile</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.myfaces</groupId>
-            <artifactId>myfaces-impl</artifactId>
-             <version>${version}</version>
-            <scope>compile</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.myfaces</groupId>
             <artifactId>tomahawk</artifactId>
-             <version>${version}</version>
+             <version>1.1.2-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>