<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-57</id>
	<title>Nabble - Jetty</title>
	<updated>2009-12-01T02:11:45Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Jetty-f57.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jetty-f57.html" />
	<subtitle type="html">Jetty home is &lt;a href=&quot;http://jetty.mortbay.org/jetty/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26588119</id>
	<title>Problem defining SystemProperties in jetty-maven-plugin</title>
	<published>2009-12-01T02:11:45Z</published>
	<updated>2009-12-01T02:11:45Z</updated>
	<author>
		<name>Jacob Bergöö</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I am right now using a lot of -D flags when I start
&lt;br&gt;up my jetty-maven-plugin and I want to be able to define them in my pom.xml
&lt;br&gt;file but the change of package names cause problem.
&lt;br&gt;&lt;br&gt;the error state:
&lt;br&gt;&lt;br&gt;[ERROR] BUILD ERROR
&lt;br&gt;[INFO]
&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;[INFO] Failed to configure plugin parameters for:
&lt;br&gt;org.mortbay.jetty:jetty-maven-plugin:7.0.1.v20091125
&lt;br&gt;Cause: Class name which was explicitly given in configuration using
&lt;br&gt;'implementation' attribute: 'org.eclipse.jetty.plugin.util.SystemProperties'
&lt;br&gt;cannot be loaded
&lt;br&gt;&lt;br&gt;I have looked through the org.eclipse.jetty jar files but haven't found
&lt;br&gt;SystemProperties and SystemProperty classes.
&lt;br&gt;&lt;br&gt;This is how my definition in the pom files looks with the system properties:
&lt;br&gt;&lt;br&gt;&amp;lt;plugin&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;groupId&amp;gt;org.mortbay.jetty&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;artifactId&amp;gt;jetty-maven-plugin&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;systemProperties
&lt;br&gt;implementation=&amp;quot;org.mortbay.jetty.plugin.util.SystemProperties&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;systemProperty
&lt;br&gt;implementation=&amp;quot;org.mortbay.jetty.plugin.util.SystemProperty&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;name&amp;gt;log4j.configuration&amp;lt;/name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;value&amp;gt;&amp;quot;file:src/main/config/log4j.properties&amp;quot;&amp;lt;/value&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/systemProperty&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;....
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;systemProperty
&lt;br&gt;implementation=&amp;quot;org.mortbay.jetty.plugin.util.SystemProperty&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;name&amp;gt;initial.propertiesfilename&amp;lt;/name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;value&amp;gt;src/main/config/System.properties&amp;lt;/value&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/systemProperty&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/systemProperties&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;scanIntervalSeconds&amp;gt;0&amp;lt;/scanIntervalSeconds&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;classesDirectory&amp;gt;${basedir}/target/${build.finalName}/WEB-INF/classes&amp;lt;/classesDirectory&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;webAppConfig&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;contextPath&amp;gt;/&amp;lt;/contextPath&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;defaultsDescriptor&amp;gt;src/main/config/webdefault.xml&amp;lt;/defaultsDescriptor&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;baseResource
&lt;br&gt;implementation=&amp;quot;org.eclipse.jetty.util.resource.ResourceCollection&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;resourcesAsCSV&amp;gt;${basedir}/src/main/webapp,target/${build.finalName}&amp;lt;/resourcesAsCSV&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/baseResource&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/webAppConfig&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;connectors&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;connector
&lt;br&gt;implementation=&amp;quot;org.eclipse.jetty.server.nio.SelectChannelConnector&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;port&amp;gt;7001&amp;lt;/port&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;maxIdleTime&amp;gt;60000&amp;lt;/maxIdleTime&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/connector&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/connectors&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;lt;/plugin&amp;gt;
&lt;br&gt;&lt;br&gt;can anyone point out the right package definition to solve this?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Jacob&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-defining-SystemProperties-in-jetty-maven-plugin-tp26588119p26588119.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26572526</id>
	<title>Failed.HttpException(400,null,null)</title>
	<published>2009-11-30T02:39:25Z</published>
	<updated>2009-11-30T02:39:25Z</updated>
	<author>
		<name>vote4pedro</name>
	</author>
	<content type="html">Hello, we have recently updated to Jetty 6.1.18 and are using JDK 1.5.0_15. &amp;nbsp;Since this update it seems that URI's which worked before now give: 
&lt;br&gt;&lt;br&gt;[2009-11-30 10:58:56.836] ALL 000000000000 GLOBAL_SCOPE Caused by: HttpException(400,null,null)
&lt;br&gt;[2009-11-30 10:58:56.836] ALL 000000000000 GLOBAL_SCOPE 	at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:344)
&lt;br&gt;[2009-11-30 10:58:56.836] ALL 000000000000 GLOBAL_SCOPE 	at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:205)
&lt;br&gt;[2009-11-30 10:58:56.836] ALL 000000000000 GLOBAL_SCOPE 	at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:380)
&lt;br&gt;&lt;br&gt;The difference is that the old URI &lt;a href=&quot;http://myhost:port/myuri&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myhost:port/myuri&lt;/a&gt;&amp;nbsp;no longer works, you must place an additional &amp;quot;/&amp;quot; at the end (&lt;a href=&quot;http://myhost:port/myuri/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myhost:port/myuri/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I have reviewed all of our application code and cannot isolate a reason for this change. 
&lt;br&gt;&lt;br&gt;Can anyone help? 
&lt;br&gt;&lt;br&gt;Thanks and best regards 
&lt;br&gt;&lt;br&gt;John&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Failed.HttpException%28400%2Cnull%2Cnull%29-tp26572526p26572526.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26524764</id>
	<title>Re: Problem using &lt;execution&gt; settings in a parent pom Maven config</title>
	<published>2009-11-25T22:11:11Z</published>
	<updated>2009-11-25T22:11:11Z</updated>
	<author>
		<name>nodje</name>
	</author>
	<content type="html">I've tried to skip the test phase with -DskipTests but that also produce the same error.
&lt;br&gt;&lt;br&gt;It seems related to the Jetty plugin. It occurs after the following log:
&lt;br&gt;&lt;br&gt;Configuring Jetty for project: project
&lt;br&gt;&lt;br&gt;Trace gives:
&lt;br&gt;&lt;br&gt;Caused by: org.apache.maven.plugin.MojoExecutionException: Webapp source directory ../project-parent/src/main/webapp does not exist
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.mortbay.jetty.plugin.AbstractJettyRunMojo.checkPomConfiguration(AbstractJettyRunMojo.java:228)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.mortbay.jetty.plugin.AbstractJettyMojo.execute(AbstractJettyMojo.java:382)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.mortbay.jetty.plugin.AbstractJettyRunMojo.execute(AbstractJettyRunMojo.java:210)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.mortbay.jetty.plugin.Jetty6RunMojo.execute(Jetty6RunMojo.java:184)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 17 more
&lt;br&gt;&lt;br&gt;If I add an empty src/main/webapp, it then complains it can't find target/classes.
&lt;br&gt;&lt;br&gt;Is there really no way to avoid this check? It's so convenient to place that kind of configuration in the parent pom.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;nodje wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I'm not sure problems related to the Maven Jetty Plugin belongs to this mailing list, but it's what makes sense to me. Please let me know if this should be posted elsewhere.
&lt;br&gt;&lt;br&gt;I'm trying to setup a global integration-test config using Jetty.
&lt;br&gt;Up to know the basic Jetty configuration plugin lies in a parent pom, and that works great.
&lt;br&gt;Application using the parent pom can fine tune their Jetty config adding &amp;lt;configuration&amp;gt; element.
&lt;br&gt;&lt;br&gt;Now, to add integration test support, I have to add the following to the plugin config:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;executions&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;start-jetty&amp;lt;/id&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;phase&amp;gt;pre-integration-test&amp;lt;/phase&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goal&amp;gt;run&amp;lt;/goal&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;daemon&amp;gt;true&amp;lt;/daemon&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;stop-jetty&amp;lt;/id&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;phase&amp;gt;post-integration-test&amp;lt;/phase&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goal&amp;gt;stop&amp;lt;/goal&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/executions&amp;gt;
&lt;br&gt;&lt;br&gt;This works also fine when I add this to a war type pom.
&lt;br&gt;But when I put it in the parent pom configuration, when I try to mvn install, I get this:
&lt;br&gt;Webapp source directory .../project-parent/src/main/webapp does not exist
&lt;br&gt;and it's a BUILD ERROR.
&lt;br&gt;&lt;br&gt;Looks like because of the &amp;lt;execution&amp;gt; config, the plugin is looking for the webapp directory.
&lt;br&gt;&lt;br&gt;Why is it looking for this webapp directory only when adding the &amp;lt;executions&amp;gt; element?
&lt;br&gt;&lt;br&gt;Is there a workaround?
&lt;br&gt;&lt;br&gt;best
&lt;br&gt;/nodje
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-using-%3Cexecution%3E-settings-in-a-parent-pom-Maven-config-tp26402771p26524764.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513902</id>
	<title>Problem with jetty-maven-plugin</title>
	<published>2009-11-25T06:53:56Z</published>
	<updated>2009-11-25T06:53:56Z</updated>
	<author>
		<name>Jacob Bergöö</name>
	</author>
	<content type="html">Hi, 
&lt;br&gt;I have defined the jetty-maven-plugin in my pom.xml that is using the 7.0.0.pre5 version. I read a post that that version is a dead end and that that is actually runnig jetty 6. My configuration of 7.0.0.pre5 is working, but I want to change it to work with the latest jetty-maven-plugin and not being stuck with a dead end version of jetty-plugin. My old configuration that is working looks like this:
&lt;br&gt;&lt;br&gt;&lt;i&gt;&amp;lt;plugin&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;org.mortbay.jetty&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;jetty-maven-plugin&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;version&amp;gt;7.0.0.pre5&amp;lt;/version&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;contextPath&amp;gt;/&amp;lt;/contextPath&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;scanIntervalSeconds&amp;gt;0&amp;lt;/scanIntervalSeconds&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;classesDirectory&amp;gt;${basedir}/target/${build.finalName}/WEB-INF/classes&amp;lt;/classesDirectory&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webAppConfig&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;defaultsDescriptor&amp;gt;src/main/config/webdefault.xml&amp;lt;/defaultsDescriptor&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;baseResource implementation=&amp;quot;org.mortbay.resource.ResourceCollection&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;resourcesAsCSV&amp;gt;${basedir}/src/main/webapp,target/${build.finalName}&amp;lt;/resourcesAsCSV&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/baseResource&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webAppConfig&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;connectors&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;connector implementation=&amp;quot;org.mortbay.jetty.nio.SelectChannelConnector&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;port&amp;gt;7001&amp;lt;/port&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;maxIdleTime&amp;gt;60000&amp;lt;/maxIdleTime&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/connector&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/connectors&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;lt;/plugin&amp;gt;&lt;/i&gt;&lt;br&gt;&lt;br&gt;And I have tried to search a lot on google and on mailing lists and I havn't found any good reference on how to change the configuration to work with the new plugin.
&lt;br&gt;&lt;br&gt;I changed my pom.xml to this:
&lt;br&gt;&lt;br&gt;&lt;i&gt;&amp;lt;plugin&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;org.mortbay.jetty&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;jetty-maven-plugin&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;scanIntervalSeconds&amp;gt;0&amp;lt;/scanIntervalSeconds&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;classesDirectory&amp;gt;${basedir}/target/${build.finalName}/WEB-INF/classes&amp;lt;/classesDirectory&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;webAppConfig&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;contextPath&amp;gt;/&amp;lt;/contextPath&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;defaultsDescriptor&amp;gt;src/main/config/webdefault.xml&amp;lt;/defaultsDescriptor&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;baseResource implementation=&amp;quot;org.mortbay.resource.ResourceCollection&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;resourcesAsCSV&amp;gt;${basedir}/src/main/webapp,target/${build.finalName}&amp;lt;/resourcesAsCSV&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/baseResource&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/webAppConfig&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;connectors&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;connector implementation=&amp;quot;org.mortbay.jetty.nio.SelectChannelConnector&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;port&amp;gt;7001&amp;lt;/port&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;maxIdleTime&amp;gt;60000&amp;lt;/maxIdleTime&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/connector&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/connectors&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;lt;/plugin&amp;gt;&lt;/i&gt;&lt;br&gt;&lt;br&gt;But when I try to run my application I get:
&lt;br&gt;&lt;br&gt;&lt;i&gt;[ERROR] BUILD ERROR
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Failed to configure plugin parameters for: org.mortbay.jetty:jetty-maven-plugin:7.0.1.v20091125
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Cause: Class name which was explicitly given in configuration using 'implementation' attribute: 'org.mortbay.jetty.nio.SelectChannelConnector' cannot be loaded
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Trace
&lt;br&gt;org.apache.maven.lifecycle.LifecycleExecutionException: Error configuring: org.mortbay.jetty:jetty-maven-plugin. Reason: Unable to parse the created DOM for plugin config
&lt;br&gt;uration
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:568)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:493)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:463)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:333)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:126)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.cli.MavenCli.main(MavenCli.java:282)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
&lt;br&gt;Caused by: org.apache.maven.plugin.PluginConfigurationException: Error configuring: org.mortbay.jetty:jetty-maven-plugin. Reason: Unable to parse the created DOM for plug
&lt;br&gt;in configuration
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.plugin.DefaultPluginManager.populatePluginFields(DefaultPluginManager.java:1157)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:618)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:425)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:539)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 16 more
&lt;br&gt;Caused by: org.codehaus.plexus.component.configurator.ComponentConfigurationException: Class name which was explicitly given in configuration using 'implementation' attri
&lt;br&gt;bute: 'org.mortbay.jetty.nio.SelectChannelConnector' cannot be loaded
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.plexus.component.configurator.converters.AbstractConfigurationConverter.getClassForImplementationHint(AbstractConfigurationConverter.java:71)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.plexus.component.configurator.converters.composite.ArrayConverter.fromConfiguration(ArrayConverter.java:78)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.plexus.component.configurator.converters.ComponentValueSetter.configure(ComponentValueSetter.java:247)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.plexus.component.configurator.converters.composite.ObjectWithFieldsConverter.processConfiguration(ObjectWithFieldsConverter.java:137)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.plexus.component.configurator.BasicComponentConfigurator.configureComponent(BasicComponentConfigurator.java:56)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.maven.plugin.DefaultPluginManager.populatePluginFields(DefaultPluginManager.java:1151)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 19 more
&lt;br&gt;Caused by: java.lang.ClassNotFoundException: org.mortbay.jetty.nio.SelectChannelConnector
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.security.AccessController.doPrivileged(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.RealmClassLoader.loadClassDirect(RealmClassLoader.java:195)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:255)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:274)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.RealmClassLoader.loadClass(RealmClassLoader.java:214)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.codehaus.plexus.component.configurator.converters.AbstractConfigurationConverter.getClassForImplementationHint(AbstractConfigurationConverter.java:62)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 24 more&lt;/i&gt;&lt;br&gt;&lt;br&gt;I hope that anyone can give me some pointers or code example on how to configure this so it works.
&lt;br&gt;Thanks in advance,
&lt;br&gt;Jacob&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-jetty-maven-plugin-tp26513902p26513902.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26508057</id>
	<title>jetty-hightide-6.1H.22 Release</title>
	<published>2009-11-24T22:15:31Z</published>
	<updated>2009-11-24T22:15:31Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">Release 6.1H.22 is now available of jetty-hightide from &lt;a href=&quot;http://www.webtide.com/resources/downloads.jsp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webtide.com/resources/downloads.jsp&lt;/a&gt;&lt;br&gt;&lt;br&gt;For more information on hightide, go to &lt;a href=&quot;http://docs.codehaus.org/display/JETTY/Hightide+Documentation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/JETTY/Hightide+Documentation&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release is based on jetty-6.1.22:
&lt;br&gt;&amp;nbsp;+ Fixed XSS issue in demo CometDump servlet
&lt;br&gt;&amp;nbsp;+ JETTY-937 More JVM bug work arounds. Insert pause if all else fails
&lt;br&gt;&amp;nbsp;+ JETTY-983 Send content-length with multipart ranges
&lt;br&gt;&amp;nbsp;+ JETTY-1120 Requests with no body are treated as complete even if there's a LF left to read
&lt;br&gt;&amp;nbsp;+ JETTY-1121 Merge Multipart query parameters
&lt;br&gt;&amp;nbsp;+ JETTY-1122 Handle multi-byte utf that causes buffer overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1129 Filter control characters out of StdErrLog
&lt;br&gt;&amp;nbsp;+ JETTY-1135 Handle connection closed before accepted during JVM bug work around
&lt;br&gt;&amp;nbsp;+ JETTY-1144 Fixed multi-byte character overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1148 Reset partially read request reader.
&lt;br&gt;&amp;nbsp;+ COMETD-28 Improved concurrency usage in Bayeux and channel handling
&lt;br&gt;&amp;nbsp;+ 289221 HttpExchange does not timeout when using blocking connector
&lt;br&gt;&amp;nbsp;+ 290761 HttpExchange.waitForDone()
&lt;br&gt;&amp;nbsp;+ 291340 state==HEADER (Race condition in onException() notifications)
&lt;br&gt;&amp;nbsp;+ 292546 Proactively enforce HttpClient idle timeout
&lt;br&gt;&amp;nbsp;+ CVE-2009-3555 Prevent SSL renegotiate for SSL vulnerability
&lt;br&gt;&lt;br&gt;and also includes the following updates:
&lt;br&gt;+ cometd to 1.0.0rc0
&lt;br&gt;+ dojo to 1.3.2
&lt;br&gt;+ slf4j to 1.5.6
&lt;br&gt;+ atomikos to 3.5.8
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;Jan Bartel, Webtide LLC | &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26508057&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;janb@...&lt;/a&gt; | &lt;a href=&quot;http://www.webtide.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webtide.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty---Announce-f2649.html&quot; embed=&quot;fixTarget[2649]&quot; target=&quot;_top&quot; &gt;Jetty - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jetty-hightide-6.1H.22-Release-tp26508057p26508057.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26508056</id>
	<title>jetty-hightide-6.1H.22 Release</title>
	<published>2009-11-24T22:15:31Z</published>
	<updated>2009-11-24T22:15:31Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">Release 6.1H.22 is now available of jetty-hightide from &lt;a href=&quot;http://www.webtide.com/resources/downloads.jsp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webtide.com/resources/downloads.jsp&lt;/a&gt;&lt;br&gt;&lt;br&gt;For more information on hightide, go to &lt;a href=&quot;http://docs.codehaus.org/display/JETTY/Hightide+Documentation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/JETTY/Hightide+Documentation&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release is based on jetty-6.1.22:
&lt;br&gt;&amp;nbsp;+ Fixed XSS issue in demo CometDump servlet
&lt;br&gt;&amp;nbsp;+ JETTY-937 More JVM bug work arounds. Insert pause if all else fails
&lt;br&gt;&amp;nbsp;+ JETTY-983 Send content-length with multipart ranges
&lt;br&gt;&amp;nbsp;+ JETTY-1120 Requests with no body are treated as complete even if there's a LF left to read
&lt;br&gt;&amp;nbsp;+ JETTY-1121 Merge Multipart query parameters
&lt;br&gt;&amp;nbsp;+ JETTY-1122 Handle multi-byte utf that causes buffer overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1129 Filter control characters out of StdErrLog
&lt;br&gt;&amp;nbsp;+ JETTY-1135 Handle connection closed before accepted during JVM bug work around
&lt;br&gt;&amp;nbsp;+ JETTY-1144 Fixed multi-byte character overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1148 Reset partially read request reader.
&lt;br&gt;&amp;nbsp;+ COMETD-28 Improved concurrency usage in Bayeux and channel handling
&lt;br&gt;&amp;nbsp;+ 289221 HttpExchange does not timeout when using blocking connector
&lt;br&gt;&amp;nbsp;+ 290761 HttpExchange.waitForDone()
&lt;br&gt;&amp;nbsp;+ 291340 state==HEADER (Race condition in onException() notifications)
&lt;br&gt;&amp;nbsp;+ 292546 Proactively enforce HttpClient idle timeout
&lt;br&gt;&amp;nbsp;+ CVE-2009-3555 Prevent SSL renegotiate for SSL vulnerability
&lt;br&gt;&lt;br&gt;and also includes the following updates:
&lt;br&gt;+ cometd to 1.0.0rc0
&lt;br&gt;+ dojo to 1.3.2
&lt;br&gt;+ slf4j to 1.5.6
&lt;br&gt;+ atomikos to 3.5.8
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;Jan Bartel, Webtide LLC | &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26508056&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;janb@...&lt;/a&gt; | &lt;a href=&quot;http://www.webtide.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webtide.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jetty-hightide-6.1H.22-Release-tp26508056p26508056.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507508</id>
	<title>Jetty &amp; Hightide releases 7.0.1.v20091125</title>
	<published>2009-11-24T20:44:33Z</published>
	<updated>2009-11-24T20:44:33Z</updated>
	<author>
		<name>Greg Wilkins</name>
	</author>
	<content type="html">&lt;br&gt;Jetty release 7.0.1.v20091125 is now available via &lt;a href=&quot;http://eclipse.org/jetty&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eclipse.org/jetty&lt;/a&gt;&lt;br&gt;Hightide release 7.0.1.v20091125 is now available via &lt;a href=&quot;http://jetty.codehaus.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jetty.codehaus.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release provides a work around for the CERT-2009-3555 SSL vulnerability.
&lt;br&gt;SSL renegotiation is no longer supported and this work around is highly
&lt;br&gt;recommended until JVM updates are available.
&lt;br&gt;&lt;br&gt;As well as many minor fixes and improvements, this release also introduced
&lt;br&gt;two new features:
&lt;br&gt;&amp;nbsp; + Websocket support
&lt;br&gt;&amp;nbsp; + OSGi JSR66 support
&lt;br&gt;&lt;br&gt;&lt;br&gt;jetty-7.0.1.v20091125 25 November 2009
&lt;br&gt;&amp;nbsp;+ 274251 DefaultServlet supports exact match mode.
&lt;br&gt;&amp;nbsp;+ 288401 HttpExchange.cancel() Method Unimplemented
&lt;br&gt;&amp;nbsp;+ 289027 deobfuscate HttpClient SSL passwords
&lt;br&gt;&amp;nbsp;+ 289265 Test harness for async input
&lt;br&gt;&amp;nbsp;+ 289959 Improved ContextDeployer configuration
&lt;br&gt;&amp;nbsp;+ 289960 start.jar assumes command line args are configs
&lt;br&gt;&amp;nbsp;+ 291019 Fix default DEBUG option; &amp;quot;-D.DEBUG=true&amp;quot; now works
&lt;br&gt;&amp;nbsp;+ 291340 Race condition in onException() notifications
&lt;br&gt;&amp;nbsp;+ 291543 make bin/*.sh scripts executable in distribution
&lt;br&gt;&amp;nbsp;+ 291589 Update jetty-rewrite demo
&lt;br&gt;&amp;nbsp;+ 292642 Fix errors in embedded Jetty examples
&lt;br&gt;&amp;nbsp;+ 292825 Continuations ISE rather than ignore bad transitions
&lt;br&gt;&amp;nbsp;+ 292546 Proactively enforce HttpClient idle timeout
&lt;br&gt;&amp;nbsp;+ 293222 Improved StatisticsHandler for async
&lt;br&gt;&amp;nbsp;+ 293506 Unable to use jconsole with Jetty when running with security manager
&lt;br&gt;&amp;nbsp;+ 293557 Add &amp;quot;jad&amp;quot; mime mapping
&lt;br&gt;&amp;nbsp;+ 294154 Patched jetty-osgi
&lt;br&gt;&amp;nbsp;+ 294224 HttpClient timeout setting has no effect when connecting to host
&lt;br&gt;&amp;nbsp;+ 294345 Support for HTTP/301 + HTTP/302 response codes
&lt;br&gt;&amp;nbsp;+ 294563 Initial websocket implementation
&lt;br&gt;&amp;nbsp;+ JETTY-937 More JVM bug work arounds. Insert pause if all else fails
&lt;br&gt;&amp;nbsp;+ JETTY-983 Send content-length with multipart ranges
&lt;br&gt;&amp;nbsp;+ JETTY-1114 unsynchronised WebAppClassloader.getResource(String)
&lt;br&gt;&amp;nbsp;+ JETTY-1121 Merge Multipart query parameters
&lt;br&gt;&amp;nbsp;+ JETTY-1122 Handle multi-byte utf that causes buffer overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1125 TransparentProxy incorrectly configured for test webapp
&lt;br&gt;&amp;nbsp;+ JETTY-1129 Filter control characters out of StdErrLog
&lt;br&gt;&amp;nbsp;+ JETTY-1135 Handle connection closed before accepted during JVM bug work around
&lt;br&gt;&amp;nbsp;+ JETTY-1144 fixed multi-byte character overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1148 Reset partially read request reader.
&lt;br&gt;&amp;nbsp;+ COMETD-34 Support Baeyux MBean
&lt;br&gt;&amp;nbsp;+ Fixed XSS issue in CookieDump demo servlet.
&lt;br&gt;&amp;nbsp;+ Improved start.jar usage text for properties
&lt;br&gt;&amp;nbsp;+ Promoted Jetty Centralized Logging from Sandbox
&lt;br&gt;&amp;nbsp;+ Promoted Jetty WebApp Verifier from Sandbox
&lt;br&gt;&amp;nbsp;+ Refactored continuation test harnessess
&lt;br&gt;&amp;nbsp;+ Fixed client abort asocciation
&lt;br&gt;&amp;nbsp;+ CQ-3581 jetty OSGi contribution
&lt;br&gt;&amp;nbsp;+ Moved centralized logging and verifier back to sandbox
&lt;br&gt;&amp;nbsp;+ 294345 Support for HTTP/301 + HTTP/302 response codes
&lt;br&gt;&amp;nbsp;+ CVE-2009-3555 Prevent SSL renegotiate for SSL vulnerability
&lt;br&gt;&amp;nbsp;+ 295421 Cannot reset() a newly created HttpExchange: IllegalStateException 0 =&amp;gt; 0
&lt;br&gt;&amp;nbsp;+ 295562 CrossOriginFilter does not work with default values in Chrome and Safari
&lt;br&gt;&lt;br&gt;&lt;br&gt;jetty@codehaus 7.0.1.v20091125 25 November 2009
&lt;br&gt;&amp;nbsp;+ JETTY-1143 make Jetty7 serve WebService request
&lt;br&gt;&amp;nbsp;+ Change name of setuid lib to &amp;quot;setuid&amp;quot; to be mac friendly
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty---Announce-f2649.html&quot; embed=&quot;fixTarget[2649]&quot; target=&quot;_top&quot; &gt;Jetty - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jetty---Hightide-releases-7.0.1.v20091125-tp26507508p26507508.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507504</id>
	<title>Jetty &amp; Hightide releases 7.0.1.v20091125</title>
	<published>2009-11-24T20:44:33Z</published>
	<updated>2009-11-24T20:44:33Z</updated>
	<author>
		<name>Greg Wilkins</name>
	</author>
	<content type="html">&lt;br&gt;Jetty release 7.0.1.v20091125 is now available via &lt;a href=&quot;http://eclipse.org/jetty&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eclipse.org/jetty&lt;/a&gt;&lt;br&gt;Hightide release 7.0.1.v20091125 is now available via &lt;a href=&quot;http://jetty.codehaus.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jetty.codehaus.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release provides a work around for the CERT-2009-3555 SSL vulnerability.
&lt;br&gt;SSL renegotiation is no longer supported and this work around is highly
&lt;br&gt;recommended until JVM updates are available.
&lt;br&gt;&lt;br&gt;As well as many minor fixes and improvements, this release also introduced
&lt;br&gt;two new features:
&lt;br&gt;&amp;nbsp; + Websocket support
&lt;br&gt;&amp;nbsp; + OSGi JSR66 support
&lt;br&gt;&lt;br&gt;&lt;br&gt;jetty-7.0.1.v20091125 25 November 2009
&lt;br&gt;&amp;nbsp;+ 274251 DefaultServlet supports exact match mode.
&lt;br&gt;&amp;nbsp;+ 288401 HttpExchange.cancel() Method Unimplemented
&lt;br&gt;&amp;nbsp;+ 289027 deobfuscate HttpClient SSL passwords
&lt;br&gt;&amp;nbsp;+ 289265 Test harness for async input
&lt;br&gt;&amp;nbsp;+ 289959 Improved ContextDeployer configuration
&lt;br&gt;&amp;nbsp;+ 289960 start.jar assumes command line args are configs
&lt;br&gt;&amp;nbsp;+ 291019 Fix default DEBUG option; &amp;quot;-D.DEBUG=true&amp;quot; now works
&lt;br&gt;&amp;nbsp;+ 291340 Race condition in onException() notifications
&lt;br&gt;&amp;nbsp;+ 291543 make bin/*.sh scripts executable in distribution
&lt;br&gt;&amp;nbsp;+ 291589 Update jetty-rewrite demo
&lt;br&gt;&amp;nbsp;+ 292642 Fix errors in embedded Jetty examples
&lt;br&gt;&amp;nbsp;+ 292825 Continuations ISE rather than ignore bad transitions
&lt;br&gt;&amp;nbsp;+ 292546 Proactively enforce HttpClient idle timeout
&lt;br&gt;&amp;nbsp;+ 293222 Improved StatisticsHandler for async
&lt;br&gt;&amp;nbsp;+ 293506 Unable to use jconsole with Jetty when running with security manager
&lt;br&gt;&amp;nbsp;+ 293557 Add &amp;quot;jad&amp;quot; mime mapping
&lt;br&gt;&amp;nbsp;+ 294154 Patched jetty-osgi
&lt;br&gt;&amp;nbsp;+ 294224 HttpClient timeout setting has no effect when connecting to host
&lt;br&gt;&amp;nbsp;+ 294345 Support for HTTP/301 + HTTP/302 response codes
&lt;br&gt;&amp;nbsp;+ 294563 Initial websocket implementation
&lt;br&gt;&amp;nbsp;+ JETTY-937 More JVM bug work arounds. Insert pause if all else fails
&lt;br&gt;&amp;nbsp;+ JETTY-983 Send content-length with multipart ranges
&lt;br&gt;&amp;nbsp;+ JETTY-1114 unsynchronised WebAppClassloader.getResource(String)
&lt;br&gt;&amp;nbsp;+ JETTY-1121 Merge Multipart query parameters
&lt;br&gt;&amp;nbsp;+ JETTY-1122 Handle multi-byte utf that causes buffer overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1125 TransparentProxy incorrectly configured for test webapp
&lt;br&gt;&amp;nbsp;+ JETTY-1129 Filter control characters out of StdErrLog
&lt;br&gt;&amp;nbsp;+ JETTY-1135 Handle connection closed before accepted during JVM bug work around
&lt;br&gt;&amp;nbsp;+ JETTY-1144 fixed multi-byte character overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1148 Reset partially read request reader.
&lt;br&gt;&amp;nbsp;+ COMETD-34 Support Baeyux MBean
&lt;br&gt;&amp;nbsp;+ Fixed XSS issue in CookieDump demo servlet.
&lt;br&gt;&amp;nbsp;+ Improved start.jar usage text for properties
&lt;br&gt;&amp;nbsp;+ Promoted Jetty Centralized Logging from Sandbox
&lt;br&gt;&amp;nbsp;+ Promoted Jetty WebApp Verifier from Sandbox
&lt;br&gt;&amp;nbsp;+ Refactored continuation test harnessess
&lt;br&gt;&amp;nbsp;+ Fixed client abort asocciation
&lt;br&gt;&amp;nbsp;+ CQ-3581 jetty OSGi contribution
&lt;br&gt;&amp;nbsp;+ Moved centralized logging and verifier back to sandbox
&lt;br&gt;&amp;nbsp;+ 294345 Support for HTTP/301 + HTTP/302 response codes
&lt;br&gt;&amp;nbsp;+ CVE-2009-3555 Prevent SSL renegotiate for SSL vulnerability
&lt;br&gt;&amp;nbsp;+ 295421 Cannot reset() a newly created HttpExchange: IllegalStateException 0 =&amp;gt; 0
&lt;br&gt;&amp;nbsp;+ 295562 CrossOriginFilter does not work with default values in Chrome and Safari
&lt;br&gt;&lt;br&gt;&lt;br&gt;jetty@codehaus 7.0.1.v20091125 25 November 2009
&lt;br&gt;&amp;nbsp;+ JETTY-1143 make Jetty7 serve WebService request
&lt;br&gt;&amp;nbsp;+ Change name of setuid lib to &amp;quot;setuid&amp;quot; to be mac friendly
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jetty---Hightide-releases-7.0.1.v20091125-tp26507504p26507504.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507006</id>
	<title>[Bamboo] Jetty - Trunk build 3184 was SUCCESSFUL (with 16 tests). Change made by Greg Wilkinson</title>
	<published>2009-11-24T19:22:44Z</published>
	<updated>2009-11-24T19:22:44Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
        		&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#e4f5e3;border-top:1px solid #b4e2b4;border-bottom:1px solid #b4e2b4;color:#393;&quot;&gt;
			&lt;tr&gt;
				&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
					&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_passed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
				&lt;/td&gt;
				&lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#393;padding:5px 10px&quot;&gt;
					&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3184/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#393&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3184&lt;/a&gt;
					&lt;span class=&quot;successful&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt; was successful.&lt;/span&gt;
                    &lt;span class=&quot;successful&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
                    &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/gregw&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Greg Wilkinson&lt;/a&gt;.
                      &lt;br /&gt;&lt;strong&gt;16&lt;/strong&gt; tests in total.
                    &lt;/span&gt;
                &lt;/td&gt;
			&lt;/tr&gt;
        &lt;/table&gt;
		&lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3184/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3184/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/gregw&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Greg Wilkinson&lt;/a&gt;&lt;br&gt;
                            ready for release
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5716)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;



        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3184/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3184/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3184/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3184.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3184&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3184-was-SUCCESSFUL-%28with-16-tests%29.-Change-made-by-Greg-Wilkinson-tp26507006p26507006.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26506582</id>
	<title>[Bamboo] Jetty - Trunk build 3183 has FAILED (0 tests failed)</title>
	<published>2009-11-24T18:16:11Z</published>
	<updated>2009-11-24T18:16:11Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3183&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;    This build occured because it is a dependant of &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-ECLIPSETRUNK7-523&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-ECLIPSETRUNK7-523&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
             &lt;tr&gt;&lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                     This build does not have any commits.
             &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3183/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3183.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3183&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3183-has-FAILED-%280-tests-failed%29-tp26506582p26506582.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26505443</id>
	<title>[Bamboo] Jetty - Trunk build 3182 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-24T15:59:52Z</published>
	<updated>2009-11-24T15:59:52Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3182&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            update to eclipse release
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5711)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091123 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3182/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3182.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3182&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3182-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26505443p26505443.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26503892</id>
	<title>[Bamboo] Jetty - Trunk build 3181 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-24T13:50:34Z</published>
	<updated>2009-11-24T13:50:34Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3181&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare for next development iteration
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5710)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3181/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3181.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3181&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3181-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26503892p26503892.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26503723</id>
	<title>[Bamboo] Jetty - Trunk build 3180 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-24T13:38:37Z</published>
	<updated>2009-11-24T13:38:37Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3180&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare release jetty-7.0.1.v20091123
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5708)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.1.v20091123&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3180/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3180.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3180&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3180-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26503723p26503723.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26503643</id>
	<title>[Bamboo] Jetty - Trunk build 3179 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-24T13:32:32Z</published>
	<updated>2009-11-24T13:32:32Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3179&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            fix VER
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5707)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3179/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3179.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3179&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3179-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26503643p26503643.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26497412</id>
	<title>Jetty not unpacking the war file</title>
	<published>2009-11-24T07:02:31Z</published>
	<updated>2009-11-24T07:02:31Z</updated>
	<author>
		<name>Nick_s</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I just downloaded and unzipped the latest version of Jetty (6.1.20) to my computer. I dropped a war file into the {jetty.home}/webapps directory and started up the server using java -jar start.jar etc/jetty.xml
&lt;br&gt;The server started up fine with no error messages. I then checked the temp directory where it supposedly unpacked the war to and I don't see a WEB-INF directory or the simple JSP file that is in the war.
&lt;br&gt;All I see is a .active directory(which is empty), jsp directory(which is empty) and webapp dir.
&lt;br&gt;The webapp dir contains a META-INF dir which contains a simple MANIFEST.MF file.
&lt;br&gt;&lt;br&gt;The war file is a simple hello world example with the single JSP page displaying the message. I tried loading up &lt;a href=&quot;http://localhost:8080/HelloWorldPrj/helloworld.jsp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/HelloWorldPrj/helloworld.jsp&lt;/a&gt;&amp;nbsp;and get a 404 not found, but &lt;a href=&quot;http://localhost:8080/HelloWorldPrj/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/HelloWorldPrj/&lt;/a&gt;&amp;nbsp;shows a dir listing with just META-INF there.
&lt;br&gt;&lt;br&gt;This is a dumb question but what the hell am I missing? Shouldn't jetty unpack any war file it finds in its /webapp dir? I am using the default setup that comes with Jetty, I haven't created a jetty.xml file of my own or any jetty-web.xml or jetty-env.xml.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Nick&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jetty-not-unpacking-the-war-file-tp26497412p26497412.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26488632</id>
	<title>[Bamboo] Jetty - Trunk build 3178 has FAILED (0 tests failed). Change made by janb</title>
	<published>2009-11-23T16:31:55Z</published>
	<updated>2009-11-23T16:31:55Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3178&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/author/janb&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;janb&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/author/janb&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               janb&lt;/a&gt;&lt;br&gt;
                            Change name of library from &amp;quot;libsetuid&amp;quot; to &amp;quot;setuid&amp;quot; to make it more mac friendly, apparently.&lt;br /&gt;

                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5706)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3178/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3178.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3178&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3178-has-FAILED-%280-tests-failed%29.-Change-made-by-janb-tp26488632p26488632.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26482640</id>
	<title>one application with two servlets each listening on separate ports</title>
	<published>2009-11-23T09:36:50Z</published>
	<updated>2009-11-23T09:36:50Z</updated>
	<author>
		<name>gjb9876</name>
	</author>
	<content type="html">(sorry, this is posted twice, it's my first post, and it keeps telling me that it's not getting sent to the mailing list. &amp;nbsp;I'm receiving other peoples posts via the email list, so I'm not sure why mine has not gone out after several days and attempts to repost)
&lt;br&gt;&lt;br&gt;I'm using jetty-6.1.21
&lt;br&gt;&lt;br&gt;I have a single application, with two servlets (two separate APIs). &amp;nbsp;One API (one servlet) must listen on one port (say 8080) but the other servlet on a different port 8081. &amp;nbsp;They share an object in memory (otherwise we'll need to read/write to a database to go between these two servlets). &amp;nbsp;8080 is open to the outside www network. &amp;nbsp;8081 is only available to our internal network. &amp;nbsp;I want to know how to bind a particular servlet to a particular port.
&lt;br&gt;&lt;br&gt;Is there a setting I can specify in the web.xml for each url-pattern to select which connector to use?
&lt;br&gt;&lt;br&gt;Is there a setting in jetty.xml to tell a connector to restrict to a url-pattern or package name or something?
&lt;br&gt;&lt;br&gt;I've been able to setup two ports, two applications, but this runs on two server instances within jetty. &amp;nbsp;I need them to share an object in memory... ideas appreciated :)
&lt;br&gt;&lt;br&gt;example jetty.xml and web.xml would be great.
&lt;br&gt;&lt;br&gt;Thanks, GJB
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/one-application-with-two-servlets-each-listening-on-separate-ports-tp26482640p26482640.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26468550</id>
	<title>[Bamboo] Jetty - Trunk build 3177 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-22T11:23:22Z</published>
	<updated>2009-11-22T11:23:22Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3177&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare for next development iteration
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5705)
                        &lt;/td&gt;&lt;/tr&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare release jetty-7.0.1.v20091122
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5703)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3177/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3177.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3177&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3177-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26468550p26468550.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26468423</id>
	<title>[Bamboo] Jetty - Trunk build 3176 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-22T11:11:28Z</published>
	<updated>2009-11-22T11:11:28Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3176&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            reset to new release
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5702)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091122 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091122&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3176/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3176.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3176&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3176-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26468423p26468423.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412902</id>
	<title>[Bamboo] Jetty - Trunk build 3175 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-18T10:09:05Z</published>
	<updated>2009-11-18T10:09:05Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3175&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare release jetty-7.0.1.v20091117
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5692)
                        &lt;/td&gt;&lt;/tr&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare for next development iteration
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5694)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3175/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3175.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3175&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3175-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26412902p26412902.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412847</id>
	<title>[Bamboo] Jetty - Trunk build 3174 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-18T10:03:02Z</published>
	<updated>2009-11-18T10:03:02Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3174&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            set versions
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5691)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091117 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091117&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3174/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3174.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3174&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3174-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26412847p26412847.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412499</id>
	<title>[Bamboo] Jetty - Trunk build 3173 has FAILED (0 tests failed)</title>
	<published>2009-11-18T09:51:14Z</published>
	<updated>2009-11-18T09:51:14Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3173&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;    This build occured because it is a dependant of &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-ECLIPSETRUNK7-509&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-ECLIPSETRUNK7-509&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
             &lt;tr&gt;&lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                     This build does not have any commits.
             &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3173/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3173.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3173&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3173-has-FAILED-%280-tests-failed%29-tp26412499p26412499.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412243</id>
	<title>[Bamboo] Jetty - Trunk build 3172 has FAILED (0 tests failed)</title>
	<published>2009-11-18T09:37:29Z</published>
	<updated>2009-11-18T09:37:29Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3172&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;    This build occured because it is a dependant of &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-ECLIPSETRUNK7-508&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-ECLIPSETRUNK7-508&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
             &lt;tr&gt;&lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                     This build does not have any commits.
             &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3172/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3172.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3172&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3172-has-FAILED-%280-tests-failed%29-tp26412243p26412243.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26411829</id>
	<title>Re: Need Jetty package...</title>
	<published>2009-11-18T09:32:43Z</published>
	<updated>2009-11-18T09:32:43Z</updated>
	<author>
		<name>gliesian</name>
	</author>
	<content type="html">I guess I only need these: 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * servlet-api-2.5-6.x.jar
&lt;br&gt;&amp;nbsp; &amp;nbsp; * jetty-util-6.x.jar
&lt;br&gt;&amp;nbsp; &amp;nbsp; * jetty-6.x.jar
&lt;br&gt;&lt;br&gt;As per this: &lt;a href=&quot;http://docs.codehaus.org/display/JETTY/Embedding+Jetty&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/JETTY/Embedding+Jetty&lt;/a&gt;?
&lt;br&gt;&lt;br&gt;I'm working it now.
&lt;br&gt;&lt;br&gt;-- Thanks.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;gliesian wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Where can I find the Jetty package (for download) that includes the following classes:
&lt;br&gt;&lt;br&gt;import org.mortbay.jetty.Connector;
&lt;br&gt;import org.mortbay.jetty.Handler;
&lt;br&gt;import org.mortbay.jetty.handler.DefaultHandler;
&lt;br&gt;import org.mortbay.jetty.handler.HandlerCollection;
&lt;br&gt;import org.mortbay.jetty.nio.SelectChannelConnector;
&lt;br&gt;import org.mortbay.jetty.webapp.WebAppContext;
&lt;br&gt;&lt;br&gt;Thanks!
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-Jetty-package...-tp26411046p26411829.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412073</id>
	<title>Re: Need Jetty package...</title>
	<published>2009-11-18T09:29:12Z</published>
	<updated>2009-11-18T09:29:12Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">&lt;a href=&quot;http://wiki.eclipse.org/Jetty/Starting/Porting_to_Jetty_7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.eclipse.org/Jetty/Starting/Porting_to_Jetty_7&lt;/a&gt;&lt;br&gt;&lt;br&gt;this should get you going
&lt;br&gt;&lt;br&gt;jesse
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;jesse mcconnell
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26412073&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jesse.mcconnell@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, Nov 18, 2009 at 11:24, gliesian &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26412073&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robert@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Where can I find the Jetty package (for download) that includes the following
&lt;br&gt;&amp;gt; classes:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; import org.mortbay.jetty.Connector;
&lt;br&gt;&amp;gt; import org.mortbay.jetty.Handler;
&lt;br&gt;&amp;gt; import org.mortbay.jetty.handler.DefaultHandler;
&lt;br&gt;&amp;gt; import org.mortbay.jetty.handler.HandlerCollection;
&lt;br&gt;&amp;gt; import org.mortbay.jetty.nio.SelectChannelConnector;
&lt;br&gt;&amp;gt; import org.mortbay.jetty.webapp.WebAppContext;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Need-Jetty-package...-tp26411046p26411046.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Need-Jetty-package...-tp26411046p26411046.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Jetty Discuss mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-Jetty-package...-tp26411046p26412073.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26411046</id>
	<title>Need Jetty package...</title>
	<published>2009-11-18T09:24:25Z</published>
	<updated>2009-11-18T09:24:25Z</updated>
	<author>
		<name>gliesian</name>
	</author>
	<content type="html">Where can I find the Jetty package (for download) that includes the following classes:
&lt;br&gt;&lt;br&gt;import org.mortbay.jetty.Connector;
&lt;br&gt;import org.mortbay.jetty.Handler;
&lt;br&gt;import org.mortbay.jetty.handler.DefaultHandler;
&lt;br&gt;import org.mortbay.jetty.handler.HandlerCollection;
&lt;br&gt;import org.mortbay.jetty.nio.SelectChannelConnector;
&lt;br&gt;import org.mortbay.jetty.webapp.WebAppContext;
&lt;br&gt;&lt;br&gt;Thanks!&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-Jetty-package...-tp26411046p26411046.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26402771</id>
	<title>Problem using &lt;execution&gt; settings in a parent pom Maven config</title>
	<published>2009-11-17T21:31:31Z</published>
	<updated>2009-11-17T21:31:31Z</updated>
	<author>
		<name>nodje</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm not sure problems related to the Maven Jetty Plugin belongs to this mailing list, but it's what makes sense to me. Please let me know if this should be posted elsewhere.
&lt;br&gt;&lt;br&gt;I'm trying to setup a global integration-test config using Jetty.
&lt;br&gt;Up to know the basic Jetty configuration plugin lies in a parent pom, and that works great.
&lt;br&gt;Application using the parent pom can fine tune their Jetty config adding &amp;lt;configuration&amp;gt; element.
&lt;br&gt;&lt;br&gt;Now, to add integration test support, I have to add the following to the plugin config:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;executions&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;start-jetty&amp;lt;/id&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;phase&amp;gt;pre-integration-test&amp;lt;/phase&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goal&amp;gt;run&amp;lt;/goal&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;daemon&amp;gt;true&amp;lt;/daemon&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;stop-jetty&amp;lt;/id&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;phase&amp;gt;post-integration-test&amp;lt;/phase&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goal&amp;gt;stop&amp;lt;/goal&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/executions&amp;gt;
&lt;br&gt;&lt;br&gt;This works also fine when I add this to a war type pom.
&lt;br&gt;But when I put it in the parent pom configuration, when I try to mvn install, I get this:
&lt;br&gt;Webapp source directory .../project-parent/src/main/webapp does not exist
&lt;br&gt;and it's a BUILD ERROR.
&lt;br&gt;&lt;br&gt;Looks like because of the &amp;lt;execution&amp;gt; config, the plugin is looking for the webapp directory.
&lt;br&gt;&lt;br&gt;Why is it looking for this webapp directory only when adding the &amp;lt;executions&amp;gt; element?
&lt;br&gt;&lt;br&gt;Is there a workaround?
&lt;br&gt;&lt;br&gt;best
&lt;br&gt;/nodje&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-using-%3Cexecution%3E-settings-in-a-parent-pom-Maven-config-tp26402771p26402771.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26400091</id>
	<title>one application with two servlets each listening on separate ports</title>
	<published>2009-11-17T16:10:08Z</published>
	<updated>2009-11-19T14:48:26Z</updated>
	<author>
		<name>gjb9876</name>
	</author>
	<content type="html">I'm using jetty-6.1.21
&lt;br&gt;&lt;br&gt;I have a single application, with two servlets (two separate APIs). &amp;nbsp;One API (one servlet) must listen on one port (say 8080) but the other servlet on a different port 8081. &amp;nbsp;They share an object in memory (otherwise we'll need to read/write to a database to go between these two servlets). &amp;nbsp;8080 is open to the outside www network. &amp;nbsp;8081 is only available to our internal network. &amp;nbsp;I want to know how to bind a particular servlet to a particular port.
&lt;br&gt;&lt;br&gt;Is there a setting I can specify in the web.xml for each url-pattern to select which connector to use?
&lt;br&gt;&lt;br&gt;Is there a setting in jetty.xml to tell a connector to restrict to a url-pattern or package name or something?
&lt;br&gt;&lt;br&gt;I've been able to setup two ports, two applications, but this runs on two server instances within jetty. &amp;nbsp;I need them to share an object in memory... ideas appreciated :)
&lt;br&gt;&lt;br&gt;example jetty.xml and web.xml would be great.
&lt;br&gt;&lt;br&gt;Thanks for your help,
&lt;br&gt;GJB
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/one-application-with-two-servlets-each-listening-on-separate-ports-tp26400091p26400091.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26400157</id>
	<title>[Bamboo] Jetty - Servlet Api 3.0 build 9 has FAILED. Change made by Greg Wilkinson</title>
	<published>2009-11-17T16:04:27Z</published>
	<updated>2009-11-17T16:04:27Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-SERVLETAPI3-9&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/gregw&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Greg Wilkinson&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/gregw&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Greg Wilkinson&lt;/a&gt;&lt;br&gt;
                            updated
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5681)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [ERROR] BUILD FAILURE&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] Compilation failure&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Failure executing javac, but could not parse the error:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    javac: invalid target release: 1.6&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Usage: javac &amp;lt;options&amp;gt; &amp;lt;source files&amp;gt;&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    where possible options include:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Generate all debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:none&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:{lines,vars,source}&amp;nbsp; &amp;nbsp; &amp;nbsp;Generate only some debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -nowarn&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no warnings&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -verbose&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output messages about what the compiler is doing&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -deprecation&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output source locations where deprecated APIs are used&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -classpath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -cp &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -sourcepath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find input source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -bootclasspath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of bootstrap class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -extdirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of installed extensions&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -endorseddirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Override location of endorsed standards path&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -d &amp;lt;directory&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to place generated class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -encoding &amp;lt;encoding&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify character encoding used by source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -source &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Provide source compatibility with specified release&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -target &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate class files for specific VM version&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -version&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version information&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -help&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Print a synopsis of standard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -X&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Print a synopsis of nonstandard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -J&amp;lt;flag&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Pass &amp;lt;flag&amp;gt; directly to the runtime system&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Failure executing javac, but could not parse the error:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    javac: invalid target release: 1.6&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Usage: javac &amp;lt;options&amp;gt; &amp;lt;source files&amp;gt;&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    where possible options include:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Generate all debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:none&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:{lines,vars,source}&amp;nbsp; &amp;nbsp; &amp;nbsp;Generate only some debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -nowarn&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no warnings&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -verbose&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output messages about what the compiler is doing&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -deprecation&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output source locations where deprecated APIs are used&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -classpath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -cp &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -sourcepath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find input source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -bootclasspath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of bootstrap class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -extdirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of installed extensions&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -endorseddirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Override location of endorsed standards path&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -d &amp;lt;directory&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to place generated class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -encoding &amp;lt;encoding&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify character encoding used by source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -source &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Provide source compatibility with specified release&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -target &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate class files for specific VM version&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -version&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version information&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -help&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Print a synopsis of standard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -X&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Print a synopsis of nonstandard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -J&amp;lt;flag&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Pass &amp;lt;flag&amp;gt; directly to the runtime system&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-9/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-SERVLETAPI3/build_logs/JETTY-SERVLETAPI3-9.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-SERVLETAPI3&amp;buildNumber=9&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Servlet-Api-3.0-build-9-has-FAILED.-Change-made-by-Greg-Wilkinson-tp26400157p26400157.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26400103</id>
	<title>[Bamboo] Jetty - Servlet Api 3.0 build 8 has FAILED. Change made by Greg Wilkinson</title>
	<published>2009-11-17T15:58:32Z</published>
	<updated>2009-11-17T15:58:32Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-SERVLETAPI3-8&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/gregw&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Greg Wilkinson&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/gregw&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Greg Wilkinson&lt;/a&gt;&lt;br&gt;
                            updated
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5680)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [ERROR] BUILD FAILURE&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] Compilation failure&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Failure executing javac, but could not parse the error:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    javac: invalid target release: 1.6&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Usage: javac &amp;lt;options&amp;gt; &amp;lt;source files&amp;gt;&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    where possible options include:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Generate all debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:none&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:{lines,vars,source}&amp;nbsp; &amp;nbsp; &amp;nbsp;Generate only some debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -nowarn&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no warnings&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -verbose&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output messages about what the compiler is doing&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -deprecation&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output source locations where deprecated APIs are used&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -classpath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -cp &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -sourcepath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find input source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -bootclasspath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of bootstrap class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -extdirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of installed extensions&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -endorseddirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Override location of endorsed standards path&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -d &amp;lt;directory&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to place generated class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -encoding &amp;lt;encoding&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify character encoding used by source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -source &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Provide source compatibility with specified release&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -target &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate class files for specific VM version&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -version&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version information&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -help&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Print a synopsis of standard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -X&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Print a synopsis of nonstandard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -J&amp;lt;flag&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Pass &amp;lt;flag&amp;gt; directly to the runtime system&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Failure executing javac, but could not parse the error:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    javac: invalid target release: 1.6&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Usage: javac &amp;lt;options&amp;gt; &amp;lt;source files&amp;gt;&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    where possible options include:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Generate all debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:none&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -g:{lines,vars,source}&amp;nbsp; &amp;nbsp; &amp;nbsp;Generate only some debugging info&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -nowarn&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate no warnings&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -verbose&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output messages about what the compiler is doing&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -deprecation&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Output source locations where deprecated APIs are used&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -classpath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -cp &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find user class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -sourcepath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to find input source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -bootclasspath &amp;lt;path&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of bootstrap class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -extdirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Override location of installed extensions&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -endorseddirs &amp;lt;dirs&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Override location of endorsed standards path&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -d &amp;lt;directory&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify where to place generated class files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -encoding &amp;lt;encoding&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Specify character encoding used by source files&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -source &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Provide source compatibility with specified release&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -target &amp;lt;release&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Generate class files for specific VM version&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -version&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version information&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -help&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Print a synopsis of standard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -X&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Print a synopsis of nonstandard options&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; -J&amp;lt;flag&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Pass &amp;lt;flag&amp;gt; directly to the runtime system&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-SERVLETAPI3-8/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-SERVLETAPI3/build_logs/JETTY-SERVLETAPI3-8.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-SERVLETAPI3&amp;buildNumber=8&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Servlet-Api-3.0-build-8-has-FAILED.-Change-made-by-Greg-Wilkinson-tp26400103p26400103.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26388692</id>
	<title>i-jetty release 2.1</title>
	<published>2009-11-17T03:52:35Z</published>
	<updated>2009-11-17T03:52:35Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">i-jetty release 2.1 is now available from the Android MarketPlace.
&lt;br&gt;Sources and associated resources are available from the i-jetty
&lt;br&gt;project at &lt;a href=&quot;http://code.google.com/p/i-jetty/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/i-jetty/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Some highlights of this release are:
&lt;br&gt;&lt;br&gt;+ Support for Android 1.6
&lt;br&gt;+ Console webapp classes refactored back into console webapp 
&lt;br&gt;+ Console webapp provides media upload and download
&lt;br&gt;+ Console webapp uses JSON and XHR
&lt;br&gt;+ Addition of SSL connector and configuration
&lt;br&gt;+ Upgrade to jetty-6.1.21
&lt;br&gt;&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;Jan
&lt;br&gt;-- 
&lt;br&gt;Jan Bartel, Webtide LLC | &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26388692&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;janb@...&lt;/a&gt; | &lt;a href=&quot;http://www.webtide.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webtide.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty---Announce-f2649.html&quot; embed=&quot;fixTarget[2649]&quot; target=&quot;_top&quot; &gt;Jetty - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/i-jetty-release-2.1-tp26388692p26388692.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26388685</id>
	<title>i-jetty release 2.1</title>
	<published>2009-11-17T03:52:35Z</published>
	<updated>2009-11-17T03:52:35Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">i-jetty release 2.1 is now available from the Android MarketPlace.
&lt;br&gt;Sources and associated resources are available from the i-jetty
&lt;br&gt;project at &lt;a href=&quot;http://code.google.com/p/i-jetty/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/i-jetty/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Some highlights of this release are:
&lt;br&gt;&lt;br&gt;+ Support for Android 1.6
&lt;br&gt;+ Console webapp classes refactored back into console webapp 
&lt;br&gt;+ Console webapp provides media upload and download
&lt;br&gt;+ Console webapp uses JSON and XHR
&lt;br&gt;+ Addition of SSL connector and configuration
&lt;br&gt;+ Upgrade to jetty-6.1.21
&lt;br&gt;&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;Jan
&lt;br&gt;-- 
&lt;br&gt;Jan Bartel, Webtide LLC | &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26388685&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;janb@...&lt;/a&gt; | &lt;a href=&quot;http://www.webtide.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webtide.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/i-jetty-release-2.1-tp26388685p26388685.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26384922</id>
	<title>Jetty release 6.1.22</title>
	<published>2009-11-16T22:13:04Z</published>
	<updated>2009-11-16T22:13:04Z</updated>
	<author>
		<name>Greg Wilkins</name>
	</author>
	<content type="html">&lt;br&gt;Jetty release 6.1.22 is now available via &lt;a href=&quot;http://jetty.mortbay.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jetty.mortbay.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release contains a work around for the vulnerability in the SSL
&lt;br&gt;protocol that is documented in CVE-2009-3555. &amp;nbsp; The work around
&lt;br&gt;prevents renegotiation of SSL connections and this prevents man
&lt;br&gt;in the middle text injection. &amp;nbsp; This work around may affect some
&lt;br&gt;client certificate usage and for that, an updated JVM will be
&lt;br&gt;required.
&lt;br&gt;&lt;br&gt;Another security related fix is that the log is now filtered
&lt;br&gt;for control characters to protect against vulnerable xterms.
&lt;br&gt;&lt;br&gt;It is highly recommended that all jetty 6 servers are updated
&lt;br&gt;to use 6.1.22
&lt;br&gt;&lt;br&gt;jetty-6.1.22 16 November 2009
&lt;br&gt;&amp;nbsp;+ Fixed XSS issue in demo CometDump servlet
&lt;br&gt;&amp;nbsp;+ JETTY-937 More JVM bug work arounds. Insert pause if all else fails
&lt;br&gt;&amp;nbsp;+ JETTY-983 Send content-length with multipart ranges
&lt;br&gt;&amp;nbsp;+ JETTY-1120 Requests with no body are treated as complete even if there's a LF left to read
&lt;br&gt;&amp;nbsp;+ JETTY-1121 Merge Multipart query parameters
&lt;br&gt;&amp;nbsp;+ JETTY-1122 Handle multi-byte utf that causes buffer overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1129 Filter control characters out of StdErrLog
&lt;br&gt;&amp;nbsp;+ JETTY-1135 Handle connection closed before accepted during JVM bug work around
&lt;br&gt;&amp;nbsp;+ JETTY-1144 Fixed multi-byte character overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1148 Reset partially read request reader.
&lt;br&gt;&amp;nbsp;+ COMETD-28 Improved concurrency usage in Bayeux and channel handling
&lt;br&gt;&amp;nbsp;+ 289221 HttpExchange does not timeout when using blocking connector
&lt;br&gt;&amp;nbsp;+ 290761 HttpExchange.waitForDone()
&lt;br&gt;&amp;nbsp;+ 291340 state==HEADER (Race condition in onException() notifications)
&lt;br&gt;&amp;nbsp;+ 292546 Proactively enforce HttpClient idle timeout
&lt;br&gt;&amp;nbsp;+ CVE-2009-3555 Prevent SSL renegotiate for SSL vulnerability
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jetty-release-6.1.22-tp26384922p26384922.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26385102</id>
	<title>[Jetty-announce] Jetty release 6.1.22</title>
	<published>2009-11-16T22:13:04Z</published>
	<updated>2009-11-16T22:13:04Z</updated>
	<author>
		<name>Greg Wilkins</name>
	</author>
	<content type="html">&lt;br&gt;Jetty release 6.1.22 is now available via &lt;a href=&quot;http://jetty.mortbay.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jetty.mortbay.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;This release contains a work around for the vulnerability in the SSL
&lt;br&gt;protocol that is documented in CVE-2009-3555. &amp;nbsp; The work around
&lt;br&gt;prevents renegotiation of SSL connections and this prevents man
&lt;br&gt;in the middle text injection. &amp;nbsp; This work around may affect some
&lt;br&gt;client certificate usage and for that, an updated JVM will be
&lt;br&gt;required.
&lt;br&gt;&lt;br&gt;Another security related fix is that the log is now filtered
&lt;br&gt;for control characters to protect against vulnerable xterms.
&lt;br&gt;&lt;br&gt;It is highly recommended that all jetty 6 servers are updated
&lt;br&gt;to use 6.1.22
&lt;br&gt;&lt;br&gt;jetty-6.1.22 16 November 2009
&lt;br&gt;&amp;nbsp;+ Fixed XSS issue in demo CometDump servlet
&lt;br&gt;&amp;nbsp;+ JETTY-937 More JVM bug work arounds. Insert pause if all else fails
&lt;br&gt;&amp;nbsp;+ JETTY-983 Send content-length with multipart ranges
&lt;br&gt;&amp;nbsp;+ JETTY-1120 Requests with no body are treated as complete even if there's a LF left to read
&lt;br&gt;&amp;nbsp;+ JETTY-1121 Merge Multipart query parameters
&lt;br&gt;&amp;nbsp;+ JETTY-1122 Handle multi-byte utf that causes buffer overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1129 Filter control characters out of StdErrLog
&lt;br&gt;&amp;nbsp;+ JETTY-1135 Handle connection closed before accepted during JVM bug work around
&lt;br&gt;&amp;nbsp;+ JETTY-1144 Fixed multi-byte character overflow
&lt;br&gt;&amp;nbsp;+ JETTY-1148 Reset partially read request reader.
&lt;br&gt;&amp;nbsp;+ COMETD-28 Improved concurrency usage in Bayeux and channel handling
&lt;br&gt;&amp;nbsp;+ 289221 HttpExchange does not timeout when using blocking connector
&lt;br&gt;&amp;nbsp;+ 290761 HttpExchange.waitForDone()
&lt;br&gt;&amp;nbsp;+ 291340 state==HEADER (Race condition in onException() notifications)
&lt;br&gt;&amp;nbsp;+ 292546 Proactively enforce HttpClient idle timeout
&lt;br&gt;&amp;nbsp;+ CVE-2009-3555 Prevent SSL renegotiate for SSL vulnerability
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Jetty-announce mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26385102&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jetty-announce@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jetty-announce&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jetty-announce&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Support-f61.html&quot; embed=&quot;fixTarget[61]&quot; target=&quot;_top&quot; &gt;Jetty Support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Jetty-announce--Jetty-release-6.1.22-tp26385102p26385102.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26384225</id>
	<title>[Bamboo] Jetty - Trunk build 3171 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-16T20:23:59Z</published>
	<updated>2009-11-16T20:23:59Z</updated>
	<author>
		<name>Codehaus Bamboo</name>
	</author>
	<content type="html">&lt;div&gt;

&lt;font size=&quot;2&quot; color=&quot;black&quot; face=&quot;Arial, Helvetica, sans-serif&quot; style=&quot;font-family: Arial, sans-serif;font-size: 13px;color:#000&quot;&gt;
&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;98%&quot;&gt;
&lt;tr&gt;
	&lt;td style=&quot;vertical-align:top&quot;&gt;
                &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ffe6e7;border-top:1px solid #eec0c0;border-bottom:1px solid #eec0c0;color:#d62829;&quot;&gt;
        &lt;tr&gt;
        &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:5px 0 5px 10px&quot;&gt;
            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/jt/icn_plan_failed.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
        &lt;/td&gt;
        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#d62829;padding:5px 10px&quot;&gt;
            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 15px; font-weight:bold; color:#d62829&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-TRUNK-3171&lt;/a&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 14px;&quot;&gt;failed.&lt;/span&gt;
            &lt;span class=&quot;failed&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;&quot;&gt;
            &lt;br /&gt;Code has been updated by &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jesse McConnell&lt;/a&gt;.
                &lt;br /&gt;No failed tests found, a possible compilation error.
            &lt;/span&gt;
        &lt;/td&gt;
        &lt;/tr&gt;
        &lt;/table&gt;
        &lt;br&gt;

       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/commit&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Code Changes&lt;/a&gt;
                &lt;/td&gt;
                &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/commit&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full change details&lt;/a&gt;&lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
       &lt;/table&gt;
       &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare release jetty-7.0.1.v20091116
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5677)
                        &lt;/td&gt;&lt;/tr&gt;
                    &lt;tr&gt;&lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 0px 10px&quot;&gt;
                            &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/businessman.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt;
                        &lt;/td&gt;
                        &lt;td width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#000;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/user/jesse&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                               Jesse McConnell&lt;/a&gt;&lt;br&gt;
                            [maven-release-plugin] prepare for next development iteration
                        &lt;/td&gt;
                        &lt;td width=&quot;60&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; ;color:#036;vertical-align:top;padding:10px 10px 0px 10px&quot;&gt;
                             (5679)
                        &lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;&lt;br&gt;


            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
                &lt;tr&gt;
                    &lt;td width=&quot;60%&quot; style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/log&quot; style=&quot;text-decoration: none; font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Error Summary&lt;/a&gt;
                    &lt;/td&gt;
                    &lt;td width=&quot;40%&quot; style=&quot;font-family: Arial, sans-serif;text-align:right;font-size:13px;color:#036;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;See full build log&lt;/a&gt;
                        &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/more.gif&quot; width=&quot;15&quot; height=&quot;15&quot; style=&quot;vertical-align:middle;padding:2px&quot;&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;

            &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f2f2f2;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;color:#000;margin-top:5px;padding:10px&quot;&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Missing:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    1) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-webapp -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-webapp:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jmx -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jmx:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    3) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-start -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-start:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    4) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-jndi -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-jndi:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    5) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-plus -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-plus:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Try downloading the file manually from the project website.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Then, install it using the command: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn install:install-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Alternatively, if you host your own repository you can deploy the file there: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp; &amp;nbsp; mvn deploy:deploy-file -DgroupId=org.eclipse.jetty -DartifactId=jetty-annotations -Dversion=7.0.1.v20091116 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; Path to dependency: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1) org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2) org.eclipse.jetty:jetty-annotations:jar:7.0.1.v20091116&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    6 required artifacts are missing.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    for artifact: &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; org.mortbay.jetty:jetty-maven-plugin:maven-plugin:7.0.2-SNAPSHOT&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    from the specified remote repositories:&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; central (http://repo1.maven.org/maven2),&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &amp;nbsp; oss.sonatype.org (http://oss.sonatype.org/content/repositories/jetty-snapshots/)&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] ------------------------------------------------------------------------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    [INFO] For more information, run Maven with the -e switch&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
            &lt;br /&gt;

        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top;padding:20px;padding-bottom:10px&quot;&gt;
                Email generated by &lt;a href=&quot;http://bamboo.ci.codehaus.org&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Atlassian Bamboo&lt;/a&gt; - if you wish to stop receiving these emails edit your  &lt;a href=&quot;http://bamboo.ci.codehaus.org/profile/userNotifications.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user profile&lt;/a&gt; or &lt;a href=&quot;http://bamboo.ci.codehaus.org/viewAdministrators.action&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;notify your administrator&lt;/a&gt;
            &lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;center&quot; style=&quot;font-family: Arial, sans-serif;text-align:center;font-size:11px;font-weight:bold;color:#999;vertical-align:top&quot;&gt;
                &lt;a href=&quot;http://www.atlassian.com/software/ideconnector/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 11px; color:#999&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Want this information in your IDE?&lt;/a&gt;
            &lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
    &lt;td width=&quot;150&quot; style=&quot;vertical-align:top&quot;&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#ecf1f7;border-top:1px solid #bbd0e5;border-bottom:1px solid #bbd0e5;color:#036;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Arial, sans-serif;text-align:left;font-size:16px;font-weight:bold;color:#036;vertical-align:top;padding:5px 10px&quot;&gt;
                    Actions
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;background-color:#f5f9fc;border-bottom:1px solid #bbd0e5;&quot;&gt;
            &lt;tr&gt;
                &lt;td style=&quot;font-family: Ariel, sans-serif; font-size: 13px; color:#036;vertical-align:top;padding:5px 10px;line-height:1.7&quot;&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Online&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/comment&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Add Comments&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3171/artifact&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;View Artifacts&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/download/JETTY-TRUNK/build_logs/JETTY-TRUNK-3171.log&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Download Logs&lt;/a&gt;
                    &lt;br&gt;
                    &lt;a href=&quot;http://bamboo.ci.codehaus.org/build/addJiraIssue!default.action?buildKey=JETTY-TRUNK&amp;buildNumber=3171&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; color:#036&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Link to JIRA issue&lt;/a&gt;
                    &lt;br&gt;
                &lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/td&gt;
&lt;tr&gt;
&lt;/table&gt;
&lt;/font&gt;
&lt;/div&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Jetty-Discuss-f60.html&quot; embed=&quot;fixTarget[60]&quot; target=&quot;_top&quot; &gt;Jetty Discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3171-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26384225p26384225.html" />
</entry>

</feed>
