From dcc79a5ecf2793a78207b9da8796b9bf8aefb86d Mon Sep 17 00:00:00 2001 From: WalkerWatch Date: Tue, 7 Feb 2017 16:12:42 -0500 Subject: [PATCH] Further clarification for jetty-all Signed-off-by: WalkerWatch --- .../development/embedding/jetty-helloworld.adoc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/jetty-documentation/src/main/asciidoc/development/embedding/jetty-helloworld.adoc b/jetty-documentation/src/main/asciidoc/development/embedding/jetty-helloworld.adoc index 89699ef8b84..491872bd241 100644 --- a/jetty-documentation/src/main/asciidoc/development/embedding/jetty-helloworld.adoc +++ b/jetty-documentation/src/main/asciidoc/development/embedding/jetty-helloworld.adoc @@ -23,8 +23,8 @@ This section provides a tutorial that shows how you can quickly develop embedded ==== Downloading the Jars Jetty is decomposed into many jars and dependencies to achieve a minimal footprint by selecting the minimal set of jars. -Typically it is best to use something like Maven to manage jars, however this tutorial uses an aggregate Jar that contains all of the Jetty classes in one Jar. -You can manually download the aggregate link:http://central.maven.org/maven2/org/eclipse/jetty/aggregate/jetty-all/{VERSION}/jetty-all-{VERSION}-uber.jar[`jetty-all.jar`] using `curl`) or a browser. +Typically it is best to use something like link:#jetty-maven-helloworld[Maven] to manage jars, however this tutorial uses an aggregate Jar that contains all of the required Jetty classes in one Jar. +You can manually download the aggregate link:http://central.maven.org/maven2/org/eclipse/jetty/aggregate/jetty-all/{VERSION}/jetty-all-{VERSION}-uber.jar[`jetty-all.jar`] using `curl` or a browser. ____ [NOTE] @@ -32,6 +32,12 @@ The central Maven repository has started to aggressively reject/deny access to t The administrators of the central maven repository have stated that the recommended command line download tool is now curl. ____ +____ +[IMPORTANT] +The `jetty-all` jar referenced in this section is for example purposes only and should not be used outside of this context. +Please consider using link:#jetty-maven-helloworld[Maven] to manage your project dependencies. +____ + Use curl as follows: [source, screen, subs="{sub-order}"]