[richfaces-svn-commits] JBoss Rich Faces SVN: r4623 - trunk/samples/ajaxPortlet.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Dec 7 16:05:04 EST 2007


Author: alexsmirnov
Date: 2007-12-07 16:05:04 -0500 (Fri, 07 Dec 2007)
New Revision: 4623

Modified:
   trunk/samples/ajaxPortlet/pom.xml
Log:
Split portletbridge into api and implementation

Modified: trunk/samples/ajaxPortlet/pom.xml
===================================================================
--- trunk/samples/ajaxPortlet/pom.xml	2007-12-07 20:48:59 UTC (rev 4622)
+++ trunk/samples/ajaxPortlet/pom.xml	2007-12-07 21:05:04 UTC (rev 4623)
@@ -1,61 +1,78 @@
-<?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/maven-v4_0_0.xsd">
+<?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/maven-v4_0_0.xsd">
 	<parent>
 		<artifactId>samples</artifactId>
 		<groupId>org.richfaces</groupId>
 		<version>3.2.0-SNAPSHOT</version>
 	</parent>
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.richfaces.samples</groupId>
-	<artifactId>portalAjaxSample</artifactId>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.samples</groupId>
+	<artifactId>portalAjaxSample</artifactId>
 	<version>3.2.0-SNAPSHOT</version>
-	<packaging>war</packaging>
-	<description>Ajax JSF sample portlet</description>
-	<build>
-		<defaultGoal>package</defaultGoal>
-    	<finalName>portalAjaxSample</finalName>
-	</build>
-	<dependencies>
-		<dependency>
-			<groupId>javax.portlet</groupId>
-			<artifactId>portlet-api</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.richfaces.extensions</groupId>
-			<artifactId>portlet</artifactId>
-			<version>3.2.0-SNAPSHOT</version>
-			<exclusions>
-				<exclusion>
-					<groupId>javax.faces</groupId>
-					<artifactId>jsf-api</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>javax.faces</groupId>
-					<artifactId>jsf-impl</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
+	<packaging>war</packaging>
+	<description>Ajax JSF sample portlet</description>
+	<build>
+		<defaultGoal>package</defaultGoal>
+		<finalName>portalAjaxSample</finalName>
+	</build>
+	<dependencies>
 		<dependency>
+			<groupId>javax.portlet</groupId>
+			<artifactId>portlet-api</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.richfaces.extensions.portletbridge</groupId>
+			<artifactId>portletbridge-api</artifactId>
+			<version>3.2.0-SNAPSHOT</version>
+			<exclusions>
+				<exclusion>
+					<groupId>javax.faces</groupId>
+					<artifactId>jsf-api</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>javax.faces</groupId>
+					<artifactId>jsf-impl</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.richfaces.extensions.portletbridge</groupId>
+			<artifactId>portletbridge-impl</artifactId>
+			<version>3.2.0-SNAPSHOT</version>
+			<exclusions>
+				<exclusion>
+					<groupId>javax.faces</groupId>
+					<artifactId>jsf-api</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>javax.faces</groupId>
+					<artifactId>jsf-impl</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
 			<groupId>org.richfaces.ui</groupId>
 			<artifactId>richfaces-ui</artifactId>
 			<version>3.2.0-SNAPSHOT</version>
 		</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>
-	</dependencies>
-</project>
-
+		<!--
+		<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>
+		-->
+	</dependencies>
+</project>
+




More information about the richfaces-svn-commits mailing list