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
m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Jetty Howto
 
{{Jetty Howto
| introduction = Jetty is a Maven project. To develop Jetty in Eclipse, follow these directions:
+
| introduction =  
 +
 
 +
{{Jetty Redirect|http://www.eclipse.org/jetty/documentation/current/contributing-source-build.html}}
 +
 
 +
Jetty is a Maven project. To develop Jetty in Eclipse, follow these directions:
  
 
====Install the m2e plugin====
 
====Install the m2e plugin====
Line 12: Line 16:
 
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.
  
====mport the Maven projects====
+
====Import the Maven projects====
  
 
# From the Eclipse menu, select '''File > Import'''.
 
# From the Eclipse menu, select '''File > Import'''.
Line 19: Line 23:
 
# In the Import Maven projects pane, click '''Browse''' and select the top folder of the jetty source tree.
 
# In the Import Maven projects pane, click '''Browse''' and select the top folder of the jetty source tree.
 
# Click '''Next/Finish''' to import all of jetty into Eclipse.
 
# Click '''Next/Finish''' to import all of jetty into Eclipse.
# Wait for Eclipse and M2E to compilie and set up the project.
+
# Wait for Eclipse and m2e to compilie and set up the project.
  
  
  
 
}}
 
}}

Latest revision as of 17:14, 23 April 2013



Introduction

Warning2.png
Jetty 7 and Jetty 8 are now EOL (End of Life)




THIS IS NOT THE DOCUMENTATION YOU ARE LOOKING FOR!!!!!






All development and stable releases are being performed with Jetty 9 and Jetty 10.






This wiki is now officially out of date and all content has been moved to the Jetty Documentation Hub






Direct Link to updated documentation: http://www.eclipse.org/jetty/documentation/current/contributing-source-build.html


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.

Import 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