Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/New and Noteworthy/1.1.0"

(New and Noteworthy in m2e-wtp 1.1.0)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
== New and Noteworthy in m2e-wtp 1.1.0 ==
 
== New and Noteworthy in m2e-wtp 1.1.0 ==
  
List of all issues fixed for m2e-wtp 1.1.0 : [https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&columnlist=product%2Ctarget_milestone%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate&list_id=9440697&product=M2E-WTP&query_format=advanced&target_milestone=1.1.0%2FLuna%20M1&target_milestone=1.1.0%2FLuna%20M4&target_milestone=1.1.0%2FLuna%20M6&target_milestone=1.1.0%2FLuna%20M7&target_milestone=1.1.0%2FLuna%20RC1&target_milestone=1.1.0%2FLuna%20RC2&target_milestone=1.1.0%2FLuna%20RC4]
+
m2e-wtp 1.1.0 is a maintenance release. List of all issues fixed for m2e-wtp 1.1.0 : [https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&columnlist=product%2Ctarget_milestone%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate&list_id=9440697&product=M2E-WTP&query_format=advanced&target_milestone=1.1.0%2FLuna%20M1&target_milestone=1.1.0%2FLuna%20M4&target_milestone=1.1.0%2FLuna%20M6&target_milestone=1.1.0%2FLuna%20M7&target_milestone=1.1.0%2FLuna%20RC1&target_milestone=1.1.0%2FLuna%20RC2&target_milestone=1.1.0%2FLuna%20RC4]
  
 
=== Pre-Requisites ===
 
=== Pre-Requisites ===
 
m2e-wtp requires an [http://www.eclipse.org/downloads/ Eclipse JavaEE distribution](Kepler or Luna), [http://www.eclipse.org/m2e m2e 1.5] and the Maven Archiver 0.16.0+ feature from Sonatype. m2e-wtp 1.1.0 can be installed from :
 
m2e-wtp requires an [http://www.eclipse.org/downloads/ Eclipse JavaEE distribution](Kepler or Luna), [http://www.eclipse.org/m2e m2e 1.5] and the Maven Archiver 0.16.0+ feature from Sonatype. m2e-wtp 1.1.0 can be installed from :
* http://download.eclipse.org/m2e-wtp/releases/luna/1.1.0
+
* http://download.eclipse.org/m2e-wtp/releases/luna/1.1
  
 
Its dependencies will be automatically discovered and installed if necessary.
 
Its dependencies will be automatically discovered and installed if necessary.

Latest revision as of 08:33, 7 July 2014

New and Noteworthy in m2e-wtp 1.1.0

m2e-wtp 1.1.0 is a maintenance release. List of all issues fixed for m2e-wtp 1.1.0 : [1]

Pre-Requisites

m2e-wtp requires an Eclipse JavaEE distribution(Kepler or Luna), m2e 1.5 and the Maven Archiver 0.16.0+ feature from Sonatype. m2e-wtp 1.1.0 can be installed from :

Its dependencies will be automatically discovered and installed if necessary.

Restart your workspace after the installation.

Disable m2e-wtp

If, for whatever reason, you find m2e-wtp conflicts with your work, you can decide to disable it in the Project or Workspace Preferences, under Preferences > Maven > Java EE Integration. Uncheck the "Enable Java EE Configuration" preference to disable m2e-wtp :

Enable-m2ewtp-pref.png

m2e-wtp can also be disabled via the <m2e.wtp.activation>false<m2e.wtp.activation> in the Maven <properties> section of your project pom;xml. This property available is available as a template when you hit Ctrl+Space while editing the the <properties> section :

Enable-m2ewtp-property.png

When <m2e.wtp.activation> is set in the pom, it overrides the current Eclipse project/workspace preference

Back to the top