Author: alexsmirnov
Date: 2010-07-21 15:48:06 -0400 (Wed, 21 Jul 2010)
New Revision: 18187
Added:
trunk/pom.xml
Modified:
trunk/
Log:
create links to the current code base
Property changes on: trunk
___________________________________________________________________
Name: svn:externals
+ ^/root/commons/trunk commons
^/root/cdk/trunk cdk
^/root/build/bom/trunk bom
^/root/core/trunk core
^/root/ui/core/trunk ui/core
^/root/ui/iteration/trunk ui/iteration
^/root/ui/misc/trunk ui/misc
^/root/ui/output/trunk ui/output
^/root/ui/dist/trunk ui/dist
^/root/archetypes/richfaces-archetype-simpleapp/trunk
archetypes/richfaces-archetype-simpleapp
^/root/examples/core-demo/trunk examples/core-demo
^/root/examples/richfaces-showcase/trunk examples/richfaces-showcase
^/root/docs/trunk docs
^/root/dist/trunk dist
Copied: trunk/pom.xml (from rev 18179, tags/4.0.0.20100715-M1/pom.xml)
===================================================================
--- trunk/pom.xml (rev 0)
+++ trunk/pom.xml 2010-07-21 19:48:06 UTC (rev 18187)
@@ -0,0 +1,55 @@
+<?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">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>root</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Richfaces Aggregator</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <inherited>false</inherited>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <modules>
+ <module>bom</module>
+ <module>commons</module>
+ <module>cdk</module>
+ <module>core</module>
+
+ <!-- richfaces ui -->
+ <module>ui/core</module>
+ <module>ui/iteration</module>
+ <module>ui/misc</module>
+ <module>ui/output</module>
+ <module>ui/dist</module>
+
+ <!-- Remaining -->
+ <module>archetypes/richfaces-archetype-simpleapp</module>
+ <module>examples/core-demo</module>
+ <module>examples/richfaces-showcase</module>
+ <module>docs</module>
+ </modules>
+
+ <profiles>
+ <profile>
+ <id>release</id>
+ <modules>
+ <module>dist</module>
+ </modules>
+ </profile>
+ </profiles>
+</project>