[richfaces-svn-commits] JBoss Rich Faces SVN: r4603 - in trunk/extensions/portletbridge: portletbridge-impl and 1 other directory.

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


Author: alexsmirnov
Date: 2007-12-07 14:07:34 -0500 (Fri, 07 Dec 2007)
New Revision: 4603

Added:
   trunk/extensions/portletbridge/portletbridge-api/
   trunk/extensions/portletbridge/portletbridge-impl/
   trunk/extensions/portletbridge/portletbridge-impl/pom.xml
Removed:
   trunk/extensions/portletbridge/portlet/
Log:
Split portletbridge into api and implementation

Copied: trunk/extensions/portletbridge/portletbridge-api (from rev 4602, trunk/extensions/portletbridge/portlet)

Added: trunk/extensions/portletbridge/portletbridge-impl/pom.xml
===================================================================
--- trunk/extensions/portletbridge/portletbridge-impl/pom.xml	                        (rev 0)
+++ trunk/extensions/portletbridge/portletbridge-impl/pom.xml	2007-12-07 19:07:34 UTC (rev 4603)
@@ -0,0 +1,82 @@
+<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>portlet</artifactId>
+	<version>3.2.0-SNAPSHOT</version>
+	<name>ajax4jsf portlet brige</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


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




More information about the richfaces-svn-commits mailing list