[richfaces-svn-commits] JBoss Rich Faces SVN: r4613 - in trunk/extensions: portletbridge and 6 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Dec 7 14:22:02 EST 2007


Author: alexsmirnov
Date: 2007-12-07 14:22:02 -0500 (Fri, 07 Dec 2007)
New Revision: 4613

Added:
   trunk/extensions/portletbridge/pom.xml
   trunk/extensions/portletbridge/portletbridge-impl/src/
   trunk/extensions/portletbridge/portletbridge-impl/src/main/
   trunk/extensions/portletbridge/portletbridge-impl/src/main/java/
   trunk/extensions/portletbridge/portletbridge-impl/src/main/resources/
   trunk/extensions/portletbridge/portletbridge-impl/src/src/
   trunk/extensions/portletbridge/portletbridge-impl/src/src/test/
   trunk/extensions/portletbridge/portletbridge-impl/src/src/test/java/
Modified:
   trunk/extensions/pom.xml
   trunk/extensions/portletbridge/portletbridge-api/pom.xml
   trunk/extensions/portletbridge/portletbridge-impl/pom.xml
Log:
Split portletbridge into api and implementation

Modified: trunk/extensions/pom.xml
===================================================================
--- trunk/extensions/pom.xml	2007-12-07 19:21:13 UTC (rev 4612)
+++ trunk/extensions/pom.xml	2007-12-07 19:22:02 UTC (rev 4613)
@@ -11,6 +11,6 @@
   <name>Richfaces extensions for a different environments</name>
   <packaging>pom</packaging>
   <modules>
-    <module>portlet</module>
+    <module>portletbridge</module>
   </modules>
 </project>
\ No newline at end of file

Added: trunk/extensions/portletbridge/pom.xml
===================================================================
--- trunk/extensions/portletbridge/pom.xml	                        (rev 0)
+++ trunk/extensions/portletbridge/pom.xml	2007-12-07 19:22:02 UTC (rev 4613)
@@ -0,0 +1,75 @@
+<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>extensions</artifactId>
+		<groupId>org.richfaces</groupId>
+		<version>3.2.0-SNAPSHOT</version>
+	</parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.richfaces.extensions</groupId>
+  <artifactId>portletbridge</artifactId>
+	<version>3.2.0-SNAPSHOT</version>
+  <name>Richfaces bridge for a portlet environment</name>
+  <packaging>pom</packaging>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>3.8.1</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>portlet-api</groupId>
+			<artifactId>portlet-api</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-api</artifactId>
+			<version>1.2_05</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-impl</artifactId>
+			<version>1.2_05</version>
+			<scope>provided</scope>
+		</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>org.richfaces.framework</groupId>
+			<artifactId>richfaces-test</artifactId>
+			<version>3.2.0-SNAPSHOT</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+  <modules>
+    <module>portletbridge-api</module>
+  </modules>
+  <modules>
+    <module>portletbridge-impl</module>
+  </modules>
+</project>
\ No newline at end of file


Property changes on: trunk/extensions/portletbridge/pom.xml
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:keywords
   + Date Revision Author

Modified: trunk/extensions/portletbridge/portletbridge-api/pom.xml
===================================================================
--- trunk/extensions/portletbridge/portletbridge-api/pom.xml	2007-12-07 19:21:13 UTC (rev 4612)
+++ trunk/extensions/portletbridge/portletbridge-api/pom.xml	2007-12-07 19:22:02 UTC (rev 4613)
@@ -7,76 +7,9 @@
 		<version>3.2.0-SNAPSHOT</version>
 	</parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.richfaces.extensions</groupId>
-	<artifactId>portlet</artifactId>
+	<groupId>org.richfaces.extensions.portletbridge</groupId>
+	<artifactId>portletbridge-api</artifactId>
 	<version>3.2.0-SNAPSHOT</version>
-	<name>ajax4jsf portlet brige</name>
+	<name>JSR-301 jsf-portlet brige api</name>
 	<url>http://labs.jboss.com/wiki/Ajax4jsf/a4j-portlet</url>
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<source>1.5</source>
-					<target>1.5</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-	<dependencies>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>3.8.1</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>portlet-api</groupId>
-			<artifactId>portlet-api</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.faces</groupId>
-			<artifactId>jsf-api</artifactId>
-			<version>1.2_05</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.faces</groupId>
-			<artifactId>jsf-impl</artifactId>
-			<version>1.2_05</version>
-			<scope>provided</scope>
-		</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>com.sun.facelets</groupId>
-			<artifactId>jsf-facelets</artifactId>
-			<version>1.1.14</version>
-			<optional>true</optional>
-		</dependency>
-		<dependency>
-			<groupId>org.richfaces.framework</groupId>
-			<artifactId>richfaces-impl</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
-		</dependency>
-		<dependency>
-			<groupId>org.richfaces.framework</groupId>
-			<artifactId>richfaces-test</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
 </project>
\ No newline at end of file

Modified: trunk/extensions/portletbridge/portletbridge-impl/pom.xml
===================================================================
--- trunk/extensions/portletbridge/portletbridge-impl/pom.xml	2007-12-07 19:21:13 UTC (rev 4612)
+++ trunk/extensions/portletbridge/portletbridge-impl/pom.xml	2007-12-07 19:22:02 UTC (rev 4613)
@@ -7,61 +7,13 @@
 		<version>3.2.0-SNAPSHOT</version>
 	</parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.richfaces.extensions</groupId>
-	<artifactId>portlet</artifactId>
+	<groupId>org.richfaces.extensions.portletbridge</groupId>
+	<artifactId>portletbridge-impl</artifactId>
 	<version>3.2.0-SNAPSHOT</version>
-	<name>ajax4jsf portlet brige</name>
+	<name>ajax4jsf portlet brige implementation</name>
 	<url>http://labs.jboss.com/wiki/Ajax4jsf/a4j-portlet</url>
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<source>1.5</source>
-					<target>1.5</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 	<dependencies>
 		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>3.8.1</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>portlet-api</groupId>
-			<artifactId>portlet-api</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.faces</groupId>
-			<artifactId>jsf-api</artifactId>
-			<version>1.2_05</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.faces</groupId>
-			<artifactId>jsf-impl</artifactId>
-			<version>1.2_05</version>
-			<scope>provided</scope>
-		</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>com.sun.facelets</groupId>
 			<artifactId>jsf-facelets</artifactId>
 			<version>1.1.14</version>
@@ -73,10 +25,10 @@
 			<version>3.2.0-SNAPSHOT</version>
 		</dependency>
 		<dependency>
-			<groupId>org.richfaces.framework</groupId>
-			<artifactId>richfaces-test</artifactId>
+			<groupId>org.richfaces.extensions.portletbridge</groupId>
+			<artifactId>portletbridge-api</artifactId>
 			<version>3.2.0-SNAPSHOT</version>
-			<scope>test</scope>
+			<optional>true</optional>
 		</dependency>
 	</dependencies>
 </project>
\ No newline at end of file




More information about the richfaces-svn-commits mailing list