Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedding Jetty 9 - where is jetty-all.jar?

Tags:

java

jetty

I'm trying to embed Jetty 9 in my project, and the tutorial at http://www.eclipse.org/jetty/documentation/current/advanced-embedding.html#jetty-helloworld suggests I need a file called "jetty-all.jar", but I can't seem to find this in the download distribution. Where do I get it from? I'm not using maven.

like image 808
Jules Avatar asked Aug 02 '13 06:08

Jules


People also ask

How do I run a jar file in Jetty?

Standalone Startup The easiest way to start Jetty, is to use the start. jar that comes with the distribution. The default options may be specified in the start. ini file, or if that is not present, they are defined in the start.

What is a Jetty container?

What is Jetty? Jetty is a pure Java-based HTTP (Web) server and Java Servlet container. While Web Servers are usually associated with serving documents to people, Jetty is now often used for machine to machine communications, usually within larger software frameworks.

What is jetty9?

Jetty provides a web server and servlet container, additionally providing support for HTTP/2, WebSocket, OSGi, JMX, JNDI, JAAS and many other integrations. These components are open source and are freely available for commercial use and distribution.


1 Answers

I found it in maven repo with a different version:

http://repo1.maven.org/maven2/org/eclipse/jetty/aggregate/jetty-all/9.0.4.v20130625/jetty-all-9.0.4.v20130625.jar

The Search Engine for The Central Repository may helps you find jar files even you don't use maven

like image 200
Septem Avatar answered Oct 20 '22 17:10

Septem