Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x
This commit is contained in:
commit
1d3e190e53
|
@ -177,7 +177,6 @@ public class TestOSGiUtil
|
|||
.start());
|
||||
res.add(mavenBundle().groupId("org.eclipse.jetty").artifactId("jetty-slf4j-impl").versionAsInProject().start());
|
||||
res.add(mavenBundle().groupId("org.eclipse.jetty").artifactId("jetty-util").versionAsInProject().start());
|
||||
res.add(mavenBundle().groupId("org.eclipse.jetty").artifactId("jetty-util-ajax").versionAsInProject().start());
|
||||
res.add(mavenBundle().groupId("org.eclipse.jetty").artifactId("jetty-deploy").versionAsInProject().start());
|
||||
res.add(mavenBundle().groupId("org.eclipse.jetty").artifactId("jetty-server").versionAsInProject().start());
|
||||
res.add(mavenBundle().groupId("org.eclipse.jetty").artifactId("jetty-servlet").versionAsInProject().start());
|
||||
|
|
|
@ -266,6 +266,10 @@ public class Main
|
|||
System.out.printf("%nModules %s:%n", t);
|
||||
System.out.printf("=========%s%n", "=".repeat(t.length()));
|
||||
args.getAllModules().listModules(tags);
|
||||
|
||||
// for default module listings, also show enabled modules
|
||||
if ("[-internal]".equals(t) || "[*]".equals(t))
|
||||
args.getAllModules().listEnabled();
|
||||
}
|
||||
|
||||
public void showModules(StartArgs args)
|
||||
|
|
|
@ -167,6 +167,8 @@ public class Modules implements Iterable<Module>
|
|||
if (tags.contains("-*"))
|
||||
return;
|
||||
|
||||
tags = new ArrayList<>(tags);
|
||||
|
||||
boolean wild = tags.contains("*");
|
||||
Set<String> included = new HashSet<>();
|
||||
if (wild)
|
||||
|
|
|
@ -347,8 +347,6 @@ public class StartArgs
|
|||
}
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
public void dumpJvmArgs()
|
||||
|
|
|
@ -19,12 +19,15 @@ Command Line Options:
|
|||
--list-config List the resolved configuration that will be used to
|
||||
start Jetty.
|
||||
Output includes:
|
||||
o Enabled jetty modules
|
||||
o Java Environment
|
||||
o Jetty Environment
|
||||
o Config file search order
|
||||
o JVM Arguments
|
||||
o System Properties
|
||||
o Properties
|
||||
o Server Classpath
|
||||
o Server XML Configuration
|
||||
o Java Classpath
|
||||
o XML Configuration files
|
||||
|
||||
--dry-run Print the command line that the start.jar generates,
|
||||
then exit. This may be used to generate command lines
|
||||
|
|
Loading…
Reference in New Issue