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 "Jetty/Howto/Develop with Eclipse"

< Jetty‎ | Howto
(New page: {{Jetty Howto | introduction = Jetty is a Maven project. To develop Jetty in Eclipse, follow these directions: ===Install the m2e plugin=== # From the Eclipse menu at the top of the scre...)
 
m
Line 2: Line 2:
 
| introduction = Jetty is a Maven project. To develop Jetty in Eclipse, follow these directions:
 
| introduction = Jetty is a Maven project. To develop Jetty in Eclipse, follow these directions:
  
===Install the m2e plugin===
+
====Install the m2e plugin====
  
 
# From the Eclipse menu at the top of the screen, select '''Help > Eclipse Marketplace'''.
 
# From the Eclipse menu at the top of the screen, select '''Help > Eclipse Marketplace'''.
Line 8: Line 8:
 
# Install '''Maven Integration for Eclipse'''.
 
# Install '''Maven Integration for Eclipse'''.
  
===Download the Jetty Source code===
+
====Download the Jetty Source Code====
  
 
Download the source code for Jetty to your disk, or just unpack the source zip file.
 
Download the source code for Jetty to your disk, or just unpack the source zip file.
  
===Import the Maven projects===
+
====mport the Maven projects====
  
 
# From the Eclipse menu, select '''File > Import'''.
 
# From the Eclipse menu, select '''File > Import'''.

Revision as of 17:02, 23 February 2012



Introduction

Jetty is a Maven project. To develop Jetty in Eclipse, follow these directions:

Install the m2e plugin

  1. From the Eclipse menu at the top of the screen, select Help > Eclipse Marketplace.
  2. Search for m2e.
  3. Install Maven Integration for Eclipse.

Download the Jetty Source Code

Download the source code for Jetty to your disk, or just unpack the source zip file.

mport the Maven projects

  1. From the Eclipse menu, select File > Import.
  2. From the Maven folder, select Existing Maven Projects.
  3. Click Next.
  4. In the Import Maven projects pane, click Browse and select the top folder of the jetty source tree.
  5. Click Next/Finish to import all of jetty into Eclipse.
  6. Wait for Eclipse and M2E to compilie and set up the project.

Back to the top