Breadcrumb Breadcrumb
Javadoc Links Javadoc Links
Downloads Downloads

Binary Distribution

The PortletFaces 1.3.0 production release is not yet available. For now, the SNAPSHOT version is available. The following JARs are necessary in order to include PortletFaces in your Liferay Portlet:

Additionally, choose one of the following adapters according to your version of Liferay

Source Distribution

Subversion (SVN)

The following sub-projects are related to PortletFaces. Note that they rely on the parent pom.xml of the edoras framework trunk.

Maven 2

If using Maven, include the following dependency in your pom.xml file.

 <dependency>
 <groupId>org.edorasframework</groupId>
 <artifactId>org.edorasframework.portletfaces</artifactId>
 <version>1.3.0-SNAPSHOT</version>
 </dependency>

 

 

Note: The Liferay 5.2 adapter is the default. You can specify an alternate adapter by excluding the 5.2 adapter and including the  alternate:

<dependency>
	<groupId>org.edorasframework</groupId>
	<artifactId>org.edorasframework.portletfaces</artifactId>
	<version>1.3.0-SNAPSHOT</version>
	<exclusions>
		<exclusion>
			<groupId>org.edorasframework</groupId>
			<artifactId>org.edorasframework.liferay.5.2.adapter</artifactId>
		</exclusion>
	</exclusions>
</dependency>
<dependency>
	<groupId>org.edorasframework</groupId>
	<artifactId>org.edorasframework.liferay.4.3.adapter</artifactId>
	<version>1.3.0-SNAPSHOT</version>
</dependency>