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 2005/12/31 18:20:45 UTC

svn commit: r360354 - /myfaces/commons/trunk/pom.xml

Author: schof
Date: Sat Dec 31 09:20:44 2005
New Revision: 360354

URL: http://svn.apache.org/viewcvs?rev=360354&view=rev
Log:
maven reorg

Added:
    myfaces/commons/trunk/pom.xml

Added: myfaces/commons/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/pom.xml?rev=360354&view=auto
==============================================================================
--- myfaces/commons/trunk/pom.xml (added)
+++ myfaces/commons/trunk/pom.xml Sat Dec 31 09:20:44 2005
@@ -0,0 +1,74 @@
+<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>
+
+  <groupId>myfaces.apache.org</groupId>
+  <artifactId>myfaces-commons</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1.2</version>
+  <name>MyFaces Commons</name>
+  <url>http://myfaces.apache.org</url>
+  <description>
+  	This is the MyFaces Commons Subproject Description [INSERT MORE STUFF HERE]
+  </description>
+
+  <parent>
+    <groupId>myfaces.apache.org</groupId>
+    <artifactId>myfaces</artifactId>
+    <version>1.1.2</version>
+  </parent>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>myfaces.apache.org</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <version>1.1.2</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>portlet-api</groupId>
+			<artifactId>portlet-api</artifactId>
+			<version>1.0</version>
+      <scope>compile</scope>
+    </dependency>       
+
+  </dependencies>
+  
+</project>
\ No newline at end of file