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

Difference between revisions of "M2E-WTP-Dev Environment"

(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...)
 
(m2e 1.1 has been released)
Line 8: Line 8:
  
 
* Download and unpack the Eclipse Juno JavaEE distribution http://download.eclipse.org/eclipse/downloads/ (Indigo is expected to work).
 
* Download and unpack the Eclipse Juno JavaEE distribution http://download.eclipse.org/eclipse/downloads/ (Indigo is expected to work).
* Install the latest m2e 1.1 milestone build from http://download.eclipse.org/technology/m2e/milestones/1.1, including  the semi-hidden m2e SDK feature (uncheck "Group items by category" to see it).
+
* Install m2e 1.1 from http://download.eclipse.org/technology/m2e/releases/, including  the semi-hidden m2e SDK feature (uncheck "Group items by category" to see it).
 
* Install commons-io 2.0.1 from the Orbit repository http://download.eclipse.org/tools/orbit/downloads/drops/R20120526062928/repository/ [Required to build the test projects]
 
* Install commons-io 2.0.1 from the Orbit repository http://download.eclipse.org/tools/orbit/downloads/drops/R20120526062928/repository/ [Required to build the test projects]
 
* Install the mavenarchiver plugin from m2e's discovery catalog : Window > Preferences > Maven > Discovery > Open Catalog...  
 
* Install the mavenarchiver plugin from m2e's discovery catalog : Window > Preferences > Maven > Discovery > Open Catalog...  

Revision as of 12:34, 27 June 2012

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