Configuring Eclipse to support WTP for Maven web projects

You want your Eclipse project to integrate with Maven for build and dependency management but you also want to utilize WTP (Web Tools Platform) support for web app development. It seems like it should work once you install both plugins, but it doesn’t as of the Indigo (3.7.1) release of Eclipse. You can create a Maven project, or you can create a Web Application (WTP) project, but they don’t play together nicely at all. Here’s a simple way to get all the features of both:

  1. If you are using the EE Eclipse release you already have WTP installed. If not you will have to install it.
  2. Install m2e – Maven Integration for Eclipse from Maven update site http://download.eclipse.org/technology/m2e/releases
  3. Install Maven Integration for WTP from Maven update site http://download.jboss.org/jbosstools/updates/m2eclipse-wtp
  4. If you already have Maven web projects in your workspace right-click -> Maven -> Update Project Confguration… on one, select all the Maven web projects from the list, and click OK

That’s all there is to it. You have WTP support for all the Maven web projects open in your workspace and you will have WTP support for all new Maven web projects you create or import.

About the Author

Object Partners profile.
Leave a Reply

Your email address will not be published. Required fields are marked *

Related Blog Posts
Android Development for iOS Developers
Android development has greatly improved since the early days. Maybe you tried it out when Android development was done in Eclipse, emulators were slow and buggy, and Java was the required language. Things have changed […]
Add a custom object to your Liquibase diff
Adding a custom object to your liquibase diff is a pretty simple two step process. Create an implementation of DatabaseObject Create an implementation of SnapshotGenerator In my case I wanted to add tracking of Stored […]
Keeping Secrets Out of Terraform State
There are many instances where you will want to create resources via Terraform with secrets that you just don’t want anyone to see. These could be IAM credentials, certificates, RDS DB credentials, etc. One problem […]
Validating Terraform Plans using Open Policy Agent
When developing infrastructure as code using terraform, it can be difficult to test and validate changes without executing the code against a real environment. The feedback loop between writing a line of code and understanding […]