[Jsf4portlets-devel] SF.net SVN: jsf4portlets:[74] trunk/jsf4portlets-api
Status: Alpha
Brought to you by:
alonsoft
From: <alo...@us...> - 2010-02-18 16:09:42
|
Revision: 74 http://jsf4portlets.svn.sourceforge.net/jsf4portlets/?rev=74&view=rev Author: alonsoft Date: 2010-02-18 16:09:36 +0000 (Thu, 18 Feb 2010) Log Message: ----------- Modified Paths: -------------- trunk/jsf4portlets-api/pom.xml trunk/jsf4portlets-api/src/main/java/javax/portlet/faces/GenericFacesPortlet.java Modified: trunk/jsf4portlets-api/pom.xml =================================================================== --- trunk/jsf4portlets-api/pom.xml 2010-02-18 16:07:41 UTC (rev 73) +++ trunk/jsf4portlets-api/pom.xml 2010-02-18 16:09:36 UTC (rev 74) @@ -1,15 +1,42 @@ -<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"> - <url>http://jsf4portlets.sf.net/web/jsf4portlets-api</url> +<?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"> + <modelVersion>4.0.0</modelVersion> + <parent> <artifactId>jsf4portlets-project</artifactId> <groupId>net.sf.jsf4portlets</groupId> <version>1.0-alpha-3-SNAPSHOT</version> </parent> - <modelVersion>4.0.0</modelVersion> + <groupId>net.sf.jsf4portlets</groupId> <artifactId>jsf4portlets-api</artifactId> <name>JSF 4 Portlets API</name> + <url>http://jsf4portlets.sf.net/web/jsf4portlets-api</url> <version>1.0-alpha-3-SNAPSHOT</version> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifest> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + </manifest> + <manifestEntries> + <Specification-Title>Portlet 1.0 Bridge for JavaServer Faces 1.2</Specification-Title> + <Specification-Version>1.0</Specification-Version> + </manifestEntries> + </archive> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>javax.portlet</groupId> Modified: trunk/jsf4portlets-api/src/main/java/javax/portlet/faces/GenericFacesPortlet.java =================================================================== --- trunk/jsf4portlets-api/src/main/java/javax/portlet/faces/GenericFacesPortlet.java 2010-02-18 16:07:41 UTC (rev 73) +++ trunk/jsf4portlets-api/src/main/java/javax/portlet/faces/GenericFacesPortlet.java 2010-02-18 16:09:36 UTC (rev 74) @@ -273,6 +273,10 @@ return result; } + public Bridge getFacesBridge() { + return facesBridge; + } + /** * If mode is VIEW, EDIT, or HELP -- defer to the doView, doEdit, doHelp so * subclasses can override. Otherwise handle mode here if there is a This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |