Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

M2E-WTP-Dev Environment

Revision as of 10:44, 27 June 2012 by Unnamed Poltroon (Talk) (New page: {{M2E-WTP}} == Clone m2e-wtp and m2e-wtp-tests == * Clone the m2e-wtp core repository. Committers should use ssh://YOUR_COMMITTERID@git.eclipse.org/gitroot/m2e-wtp/org.eclipse.m2e.wtp.git...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
M2E-WTP
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

Clone m2e-wtp and m2e-wtp-tests

Build m2e-wtp within Eclipse

Build m2e-wtp via command line

   mvn clean install

This will build m2e-wtp against the indigo platform.

  • Alternatively, execute the following to build against other platforms (helios, indigo and juno are supported)
   mvn clean install -Declipse.target=<platformId>

The very first build should be *very* long (tens of minutes), as maven will need to download all the build pre-requisites from internet. Subsequent builds can be sped up by going offline :

   mvn clean install -o

Change directory to go under m2e-wtp-tests and execute :

   mvn clean install

Back to the top