Author: abelevich
Date: 2009-09-17 06:51:58 -0400 (Thu, 17 Sep 2009)
New Revision: 15605
Added:
root/ui-sandbox/trunk/components/tables/api/pom.xml
root/ui-sandbox/trunk/components/tables/impl/pom.xml
root/ui-sandbox/trunk/components/tables/pom.xml
Log:
add maven poms
Added: root/ui-sandbox/trunk/components/tables/api/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/api/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/tables/api/pom.xml 2009-09-17 10:51:58 UTC (rev
15605)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <artifactId>tables</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>${parent.artifactId}-api</artifactId>
+ <name>richfaces table api</name>
+
+ <dependencies>
+ </dependencies>
+
+</project>
\ No newline at end of file
Added: root/ui-sandbox/trunk/components/tables/impl/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/impl/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/tables/impl/pom.xml 2009-09-17 10:51:58 UTC (rev
15605)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <artifactId>tables</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>${parent.artifactId}-impl</artifactId>
+ <name>richfaces tables impl</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <version>${project.version}</version>
+ <artifactId>${parent.artifactId}-api</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
\ No newline at end of file
Added: root/ui-sandbox/trunk/components/tables/pom.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/pom.xml (rev 0)
+++ root/ui-sandbox/trunk/components/tables/pom.xml 2009-09-17 10:51:58 UTC (rev 15605)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>components</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui.components.sandbox</groupId>
+ <artifactId>tables</artifactId>
+ <packaging>pom</packaging>
+
+ <name>richfaces tables</name>
+ <modules>
+ <module>api</module>
+ <module>impl</module>
+ </modules>
+
+</project>
\ No newline at end of file