Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Becker2013-02-14 14:55:46 +0000
committerThomas Becker2013-02-14 14:55:46 +0000
commit330845b3cea756bd32b154c917b4463ea3ef225b (patch)
tree2773f94107f0cb2ec86343f91310091563790548
parent246088c2ee817c9b057890bc6cd94c9650e30566 (diff)
downloadorg.eclipse.jetty.project-330845b3cea756bd32b154c917b4463ea3ef225b.tar.gz
org.eclipse.jetty.project-330845b3cea756bd32b154c917b4463ea3ef225b.tar.xz
org.eclipse.jetty.project-330845b3cea756bd32b154c917b4463ea3ef225b.zip
399463 add start.ini documentation for OPTIONS
-rw-r--r--jetty-start/src/test/resources/jetty.home/start.ini10
1 files changed, 10 insertions, 0 deletions
diff --git a/jetty-start/src/test/resources/jetty.home/start.ini b/jetty-start/src/test/resources/jetty.home/start.ini
index 65c0816fbb..9dac7b8b85 100644
--- a/jetty-start/src/test/resources/jetty.home/start.ini
+++ b/jetty-start/src/test/resources/jetty.home/start.ini
@@ -45,6 +45,16 @@
# These control what classes are on the classpath
# for a full listing do
# java -jar start.jar --list-options
+#
+# Enable classpath OPTIONS. Each options represents one or more jars
+# to be added to the classpath. The options are defined in
+# the start.config file and can be listed with --help or --list-options.
+# By convention, options starting with a capital letter (eg Server)
+# are aggregations of other available options.
+# Directories in $JETTY_HOME/lib can be added as dynamic OPTIONS by
+# convention. E.g. put some logging jars in $JETTY_HOME/lib/logging
+# and make them available in the classpath by adding a "logging" OPTION
+# like so: OPTIONS=Server,jsp,logging
#-----------------------------------------------------------
OPTIONS=Server,jsp,resources,websocket,ext
#-----------------------------------------------------------

Back to the top