Author: SergeySmirnov
Date: 2007-04-09 13:41:34 -0400 (Mon, 09 Apr 2007)
New Revision: 326
Added:
trunk/richfaces-samples/richfaces-art-datatable/
trunk/richfaces-samples/richfaces-art-datatable/pom.xml
Log:
richfaces datatable article example appl
Added: trunk/richfaces-samples/richfaces-art-datatable/pom.xml
===================================================================
--- trunk/richfaces-samples/richfaces-art-datatable/pom.xml (rev
0)
+++ trunk/richfaces-samples/richfaces-art-datatable/pom.xml 2007-04-09 17:41:34 UTC (rev
326)
@@ -0,0 +1,35 @@
+<?xml version="1.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">
+ <parent>
+ <artifactId>richfaces-samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-art-datatable</artifactId>
+ <packaging>war</packaging>
+ <name>richfaces-art-datatableDemo Maven Webapp</name>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <finalName>richfaces-art-datatable</finalName>
+ </build>
+</project>
+