Breadcrumb Breadcrumb
Community Links Community Links
Javadoc Links Javadoc Links
Community Forums Community Forums
Combination View Flat View Tree View
Threads [ Previous | Next ]
PortletFaces Tools doesn't work with Liferay 6.0.0
toggle
Hi,

maybe it's to early to expect this emoticon but deploying the artifact "org.edorasframework.portletfaces:1.3.0-SNAPSHOT" to Liferay 6.0.0-preview doesn't work because of the dependency to the 5.2 adapter (some API changes, i guess)
Flag Flag
RE: PortletFaces Tools doesn't work with Liferay 6.0.0
4/8/10 8:45 PM as a reply to Raphael Drüner.
I just committed a Liferay 6.0 adapter here:
http://svn.portletfaces.org/svn/framework/trunk/org.edorasframework.liferay.6.0.adapter/

If you're in a hurry, you can checkout the code and do "mvn install" to get the JAR into your local repository. Otherwise, you'll have to wait until the nightly build posts the SNAPSHOT JARs at the maven repository: http://repo.edorasware.org/mvn/maven2-snapshots/org/edorasframework/

The Liferay 5.2 adapter is the default, but if you want to use the new Liferay 6 adapter, then put the following in your portlet's pom.xml file:

<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.6.0.adapter</artifactId>
<version>1.3.0-SNAPSHOT</version>
</dependency>
Flag Flag
RE: PortletFaces Tools doesn't work with Liferay 6.0.0
4/12/10 2:02 PM as a reply to Neil Griffin.
Thanks Neil! I'll try this
Flag Flag