[richfaces-svn-commits] JBoss Rich Faces SVN: r1385 - in branches/refactor: framework and 12 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Jun 28 15:16:41 EDT 2007


Author: alexsmirnov
Date: 2007-06-28 15:16:41 -0400 (Thu, 28 Jun 2007)
New Revision: 1385

Added:
   branches/refactor/cdk/
   branches/refactor/extensions/
   branches/refactor/framework/
   branches/refactor/framework/api/
   branches/refactor/framework/api/pom.xml
   branches/refactor/framework/api/src/
   branches/refactor/framework/api/src/main/
   branches/refactor/framework/api/src/main/java/
   branches/refactor/samples/
   branches/refactor/sandbox/api/
   branches/refactor/sandbox/api/pom.xml
   branches/refactor/sandbox/api/src/
   branches/refactor/sandbox/api/src/main/
   branches/refactor/sandbox/api/src/main/java/
   branches/refactor/sandbox/samples/
   branches/refactor/sandbox/ui/
   branches/refactor/sandbox/ui/calendar/
   branches/refactor/sandbox/ui/panel2/
   branches/refactor/sandbox/ui/panelmenu/
   branches/refactor/sandbox/ui/scrollable-grid/
   branches/refactor/sandbox/ui/simpleTogglePanel2/
   branches/refactor/ui/
   branches/refactor/ui/core/
   branches/refactor/ui/core/pom.xml
   branches/refactor/ui/core/src/
   branches/refactor/ui/core/src/main/
   branches/refactor/ui/core/src/main/java/
Removed:
   branches/refactor/richfaces-samples/
   branches/refactor/richfaces/
   branches/refactor/sandbox-samples/
   branches/refactor/sandbox/calendar/
   branches/refactor/sandbox/panel2/
   branches/refactor/sandbox/panelmenu/
   branches/refactor/sandbox/scrollable-grid/
   branches/refactor/sandbox/simpleTogglePanel2/
Log:
rename projects

Added: branches/refactor/framework/api/pom.xml
===================================================================
--- branches/refactor/framework/api/pom.xml	                        (rev 0)
+++ branches/refactor/framework/api/pom.xml	2007-06-28 19:16:41 UTC (rev 1385)
@@ -0,0 +1,68 @@
+<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>framework</artifactId>
+		<groupId>org.richfaces</groupId>
+		<version>3.1.0-SNAPSHOT</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.framework</groupId>
+	<artifactId>api</artifactId>
+	<name>Java Server Faces AJAX framework API</name>
+	<properties>
+		<jsfVersion>1.1</jsfVersion>
+	</properties>
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>3.8.1</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.sun.facelets</groupId>
+			<artifactId>jsf-facelets</artifactId>
+			<version>1.1.12</version>
+			<optional>true</optional>
+		</dependency>
+		<dependency>
+			<groupId>javax.el</groupId>
+			<artifactId>el-api</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>1.0.4</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-beanutils</groupId>
+			<artifactId>commons-beanutils</artifactId>
+			<version>1.7.0</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-collections</groupId>
+			<artifactId>commons-collections</artifactId>
+			<version>3.2</version>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.5</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet.jsp</groupId>
+			<artifactId>jsp-api</artifactId>
+			<version>2.1</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-api</artifactId>
+			<version>1.2_03</version>
+		</dependency>
+	</dependencies>
+</project>
\ No newline at end of file

Copied: branches/refactor/samples (from rev 1384, branches/refactor/richfaces-samples)

Added: branches/refactor/sandbox/api/pom.xml
===================================================================
--- branches/refactor/sandbox/api/pom.xml	                        (rev 0)
+++ branches/refactor/sandbox/api/pom.xml	2007-06-28 19:16:41 UTC (rev 1385)
@@ -0,0 +1,68 @@
+<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>sandbox</artifactId>
+		<groupId>org.richfaces</groupId>
+		<version>3.1.0-SNAPSHOT</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.sandbox</groupId>
+	<artifactId>api</artifactId>
+	<name>Java Server Faces AJAX framework API</name>
+	<properties>
+		<jsfVersion>1.1</jsfVersion>
+	</properties>
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>3.8.1</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.sun.facelets</groupId>
+			<artifactId>jsf-facelets</artifactId>
+			<version>1.1.12</version>
+			<optional>true</optional>
+		</dependency>
+		<dependency>
+			<groupId>javax.el</groupId>
+			<artifactId>el-api</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>1.0.4</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-beanutils</groupId>
+			<artifactId>commons-beanutils</artifactId>
+			<version>1.7.0</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-collections</groupId>
+			<artifactId>commons-collections</artifactId>
+			<version>3.2</version>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.5</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet.jsp</groupId>
+			<artifactId>jsp-api</artifactId>
+			<version>2.1</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-api</artifactId>
+			<version>1.2_03</version>
+		</dependency>
+	</dependencies>
+</project>
\ No newline at end of file

Copied: branches/refactor/sandbox/samples (from rev 1384, branches/refactor/sandbox-samples)

Copied: branches/refactor/sandbox/ui/calendar (from rev 1384, branches/refactor/sandbox/calendar)

Copied: branches/refactor/sandbox/ui/panel2 (from rev 1384, branches/refactor/sandbox/panel2)

Copied: branches/refactor/sandbox/ui/panelmenu (from rev 1384, branches/refactor/sandbox/panelmenu)

Copied: branches/refactor/sandbox/ui/scrollable-grid (from rev 1384, branches/refactor/sandbox/scrollable-grid)

Copied: branches/refactor/sandbox/ui/simpleTogglePanel2 (from rev 1384, branches/refactor/sandbox/simpleTogglePanel2)

Copied: branches/refactor/ui (from rev 1384, branches/refactor/richfaces)

Added: branches/refactor/ui/core/pom.xml
===================================================================
--- branches/refactor/ui/core/pom.xml	                        (rev 0)
+++ branches/refactor/ui/core/pom.xml	2007-06-28 19:16:41 UTC (rev 1385)
@@ -0,0 +1,20 @@
+<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>ui</artifactId>
+		<groupId>org.richfaces</groupId>
+		<version>3.1.0-SNAPSHOT</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.ui</groupId>
+	<artifactId>core</artifactId>
+	<name>Java Server Faces AJAX framework</name>
+	<dependencies>
+		<dependency>
+			<groupId>org.richfaces.framework</groupId>
+			<artifactId>impl</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+	</dependencies>
+</project>
\ No newline at end of file




More information about the richfaces-svn-commits mailing list