Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I create my portlets using Maven, and I'm using Liferay IDE (an eclipse based IDE), but I can't deploy my project directly from Liferay IDE because my project don't support this. There is a way to add the Liferay's capability to the project, but it don't work ... Can you help please ?

share|improve this question

3 Answers

up vote 1 down vote accepted

The Maven archetypes and plugin for Liferay allow you to create and deploy portlet projects.

If you import the project into Eclipse as an existing Maven project (using m2eclipse), then you can do a "Run as Maven build" and run "mvn liferay:deploy". If you deploy to, for example, a Tomcat instance running in debug mode in Eclipse, then you'll be able to set breakpoints etc.

You may not even need the "Liferay IDE" as opposed to plain old Eclipse if you do this.

share|improve this answer

You might have already seen this, but I followed this guide to get started with the Liferay IDE in our project:

http://www.liferay.com/community/wiki/-/wiki/Main/Liferay+IDE+Getting+Started+Tutorial

Hope it helps.

share|improve this answer
The problem is not on creating a portlet, but using Liferay IDE with a maven project (a portlet but following the maven's project architecture) – Marouane Jun 10 '11 at 7:05

In the current version of Liferay IDE (1.2.x) there is no way to add Liferay IDE project facets to maven based projects. In a future version of Liferay IDE (2.0) there will be Maven support.

For now you will just have to use the ant build.xml scripts for deploying or perhaps the liferay maven plugins which may support deployment.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.