<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-60</id>
	<title>Nabble - Jetty Discuss</title>
	<updated>2009-11-10T09:21:12Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Jetty-Discuss-f60.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jetty-Discuss-f60.html" />
	<subtitle type="html">The jetty-discuss mailing list is for discussion about Jetty development, integration and issues. &amp;nbsp;Support and general help postings should go to &lt;a href=&quot;http://www.nabble.com/Jetty-Support-f61.html&quot; target=&quot;_top&quot;&gt;Jetty Support&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26287338</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-10T09:21:12Z</published>
	<updated>2009-11-10T09:21:12Z</updated>
	<author>
		<name>Ludovic Orban</name>
	</author>
	<content type="html">Jesse,
&lt;br&gt;&lt;br&gt;1) Could you please point me to instructions about how to get the agreement? I remember I had to fill &amp; sign via PGP some contributor agreement file when I got contributor SVN access for Jetty 6 but I can't remember the details nor find the old agreement back.
&lt;br&gt;&lt;br&gt;2) There a two ways to make use of this module:
&lt;br&gt;&amp;nbsp; * J2SE mode: just drop the Jetty binaries and this module's jar in your classpath and any call to javax.xml.ws.Endpoint.publish() will actually publish the web service on Jetty instead of on Sun's embedded web server.
&lt;br&gt;&amp;nbsp; * J2EE/mixed mode: use this mode when you write a web application which needs to expose some web services (again with javax.xml.ws.Endpoint.publish()) but you want the web services to re-use the Jetty server and just create a new context per published web service. This requires the JettyHttpServerProvider.setServer() method to be called before any web service is published to tell the code to which server to add contexts.
&lt;br&gt;&lt;br&gt;3) I use both modes, the J2SE mode mostly for quick'n'dirty development and mixed mode mostly for production-quality code. The explanation at point (2) should gibe you a clear overview of the only possible use cases. If not shoot me as I wasn't clear enough describing them.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26287338.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26287240</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-10T09:06:51Z</published>
	<updated>2009-11-10T09:06:51Z</updated>
	<author>
		<name>Ludovic Orban</name>
	</author>
	<content type="html">Setting the system property is useless, just having the module on the classpath should be sufficient to have Jetty replace the Sun HTTP server.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26287240.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26262246</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-08T23:31:25Z</published>
	<updated>2009-11-08T23:31:25Z</updated>
	<author>
		<name>Axel Rose</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;my usage scenario is this:
&lt;br&gt;&lt;br&gt;I have some kind of server using a propriatory protocol. To make the
&lt;br&gt;server usable for 3rd party developers there is a web service interface
&lt;br&gt;using SOAP messages over http.
&lt;br&gt;&lt;br&gt;Up til now I use JAX-WS, build a war file and deploy that to a servlet
&lt;br&gt;container.
&lt;br&gt;&lt;br&gt;With embedded Jetty I can now provide the SOAP interface directly from
&lt;br&gt;my main server, short, simple and effective by just setting a property
&lt;br&gt;&lt;br&gt;System.setProperty(
&lt;br&gt;&amp;nbsp; &amp;quot;com.sun.net.httpserver.HttpServerProvider&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;quot;org.eclipse.jetty.jaxws2spi.JettyHttpServerProvider&amp;quot;);
&lt;br&gt;&lt;br&gt;The SOAP endpoint for a sample Calculator service is published thusly:
&lt;br&gt;&lt;br&gt;Calculator calculator = new Calculator();
&lt;br&gt;Endpoint endpoint = Endpoint.create(calculator);
&lt;br&gt;endpoint.publish(calcContext);
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; Axel
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26262246.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26258080</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-08T13:21:49Z</published>
	<updated>2009-11-08T13:21:49Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">I have reviewed and committed this into the codehaus trunk and wired
&lt;br&gt;it into the build...
&lt;br&gt;&lt;br&gt;A couple of things I would like to see here:
&lt;br&gt;&lt;br&gt;1) Ludovic: as the sole contributor of this and while we have your
&lt;br&gt;attention, should this be a candidate for migrating to the eclipse
&lt;br&gt;side of the jetty project would you also attach to the jira issue your
&lt;br&gt;agreement that this contribution would also be acceptable to you for
&lt;br&gt;being dual licensed EPL 1.0 and ASL 2.0? &amp;nbsp;That way it will be easier
&lt;br&gt;to get that contribution through should this be something the project
&lt;br&gt;decides to do down the road.
&lt;br&gt;&lt;br&gt;2) Axel and Ludovic: a little bit of documentation as to how you guys
&lt;br&gt;use this module would be great, if you just replied to this mail with
&lt;br&gt;the info I'll get a wiki page going for it.
&lt;br&gt;&lt;br&gt;3) Axel and Ludovic: What is your general usage scenario for making
&lt;br&gt;use of this context...is this something that you guys do standalone
&lt;br&gt;just for a particular server or do you wire this into the default
&lt;br&gt;jetty server on startup? &amp;nbsp;Once I have a good idea on the usage and
&lt;br&gt;configuration of this thing I'll go ahead and wire it into the
&lt;br&gt;jetty-hightide distribution.
&lt;br&gt;&lt;br&gt;cheers and thanks for the contribution guys
&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=26258080&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 Sun, Nov 8, 2009 at 07:20, Ludovic Orban &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26258080&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ludovic.orban@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jesse,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This Jetty module is the only way I know to get scalable JAX-WS2 web
&lt;br&gt;&amp;gt; services on J2SE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've attached to JETTY-1143 a slightly cleaned up version which compiles and
&lt;br&gt;&amp;gt; works with Jetty 7. I'd appreciate if that module could be reviewed and
&lt;br&gt;&amp;gt; eventually committed back to the SVN repository.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Ludovic
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26253711.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26253711.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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26258080.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26258048</id>
	<title>[Bamboo] Jetty - Trunk build 3166 has FAILED (0 tests failed). Change made by Jesse McConnell</title>
	<published>2009-11-08T13:15:51Z</published>
	<updated>2009-11-08T13:15:51Z</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-3166/&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-3166&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-3166/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-3166/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;
                            &lt;a title=&quot;View this issue&quot; class=&quot;jiraLinkIcon&quot; href=&quot;http://jira.codehaus.org/browse/JETTY-1143?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&quot; id=&quot;viewIssueInJira:JETTY-1143&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-1143&lt;/a&gt; adding into build and mentioning in VERSION.txt
                        &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;
                             (5659)
                        &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;
                            &lt;a title=&quot;View this issue&quot; class=&quot;jiraLinkIcon&quot; href=&quot;http://jira.codehaus.org/browse/JIRA-1143?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&quot; id=&quot;viewIssueInJira:JIRA-1143&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JIRA-1143&lt;/a&gt; port of jetty-j2se6 package to jetty7
                        &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;
                             (5658)
                        &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;vertical-align:top;padding:5px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-TRUNK-3166/issues&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;JIRA Issues&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-3166/issues&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 issue 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; alt=&quot;more&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 5px 10px&quot;&gt;
                                &lt;img src=&quot;http://jira.codehaus.org/images/icons/improvement.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 5px 10px&quot;&gt;
                            &lt;a href=&quot;http://jira.codehaus.org/browse/JETTY-1143?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&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;JETTY-1143&lt;/a&gt;
                            &lt;span style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#999&quot;&gt;(Related)&lt;/span&gt;
                            &lt;br&gt;
                                make Jetty7 serve WebService request
                        &lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;

                       &lt;td width=&quot;20&quot; style=&quot;vertical-align:top;padding:10px 0 5px 10px&quot;&gt;
                                &lt;img src=&quot;http://bamboo.ci.codehaus.org/images/icons/jira_type_unknown.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 5px 10px&quot;&gt;
                            &lt;a href=&quot;http://jira.codehaus.org/browse/JIRA-1143?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&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;JIRA-1143&lt;/a&gt;
                            &lt;span style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#999&quot;&gt;(Related)&lt;/span&gt;
                            &lt;br&gt;
                                &lt;span style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#999&quot;&gt;&lt;em&gt;Could not obtain issue details from JIRA&lt;/em&gt;&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-3166/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-3166/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 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;
                    [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] Failed to resolve 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;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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) com.sun.net.httpserver:http:jar:20070405&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td 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=com.sun.net.httpserver -DartifactId=http -Dversion=20070405 -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=com.sun.net.httpserver -DartifactId=http -Dversion=20070405 -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-jaxws2spi:jar:7.0.1.M0-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) com.sun.net.httpserver:http:jar:20070405&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    ----------&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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 required artifact is 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-jaxws2spi:jar:7.0.1.M0-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-3166/&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-3166/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-3166/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-3166.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=3166&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Trunk-build-3166-has-FAILED-%280-tests-failed%29.-Change-made-by-Jesse-McConnell-tp26258048p26258048.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26257052</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-08T11:30:07Z</published>
	<updated>2009-11-08T11:30:07Z</updated>
	<author>
		<name>Axel Rose</name>
	</author>
	<content type="html">It's working for me.
&lt;br&gt;&lt;br&gt;Phantastic!!
&lt;br&gt;&lt;br&gt;Many thanks for spending time during the weekend Ludovic
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&amp;nbsp; Axel.
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26257052.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26254952</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-08T07:52:43Z</published>
	<updated>2009-11-08T07:52:43Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">great! I'll take a look, if it is working then we'll probably be able
&lt;br&gt;to get it into the next release cycle of 7.0.1, otherwise would be the
&lt;br&gt;one right after that
&lt;br&gt;&lt;br&gt;cheers,
&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=26254952&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 Sun, Nov 8, 2009 at 07:20, Ludovic Orban &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26254952&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ludovic.orban@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jesse,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This Jetty module is the only way I know to get scalable JAX-WS2 web
&lt;br&gt;&amp;gt; services on J2SE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've attached to JETTY-1143 a slightly cleaned up version which compiles and
&lt;br&gt;&amp;gt; works with Jetty 7. I'd appreciate if that module could be reviewed and
&lt;br&gt;&amp;gt; eventually committed back to the SVN repository.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Ludovic
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26253711.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26253711.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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26254952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26253711</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-08T05:20:32Z</published>
	<updated>2009-11-08T05:20:32Z</updated>
	<author>
		<name>Ludovic Orban</name>
	</author>
	<content type="html">Jesse,
&lt;br&gt;&lt;br&gt;This Jetty module is the only way I know to get scalable JAX-WS2 web services on J2SE.
&lt;br&gt;&lt;br&gt;I've attached to JETTY-1143 a slightly cleaned up version which compiles and works with Jetty 7. I'd appreciate if that module could be reviewed and eventually committed back to the SVN repository.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Ludovic</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26253711.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26251395</id>
	<title>verifier and logging back in the sandbox</title>
	<published>2009-11-07T22:59:40Z</published>
	<updated>2009-11-07T22:59:40Z</updated>
	<author>
		<name>Greg Wilkins</name>
	</author>
	<content type="html">&lt;br&gt;I've moved the webapp-verifier and centralized logging back to the sandbox
&lt;br&gt;for now.
&lt;br&gt;&lt;br&gt;They really &amp;quot;belong&amp;quot; in the codehaus as part of the non-core components.
&lt;br&gt;But they've been developed at eclipse under the eclipse terms, so it's
&lt;br&gt;best to keep them eclipse clean and in eclipse SVN.
&lt;br&gt;&lt;br&gt;&amp;nbsp; svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/sandbox/trunk
&lt;br&gt;&lt;br&gt;&lt;br&gt;So we need to come up with way to build non-core optional components
&lt;br&gt;that are at eclipse. &amp;nbsp;The eclipse update site and some of the OSGi
&lt;br&gt;integration stuff are also examples of this are are currently
&lt;br&gt;living at svn+ssh://&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26251395&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gwilkins@...&lt;/a&gt;/svnroot/rt/org.eclipse.jetty/eclipse
&lt;br&gt;&lt;br&gt;&lt;br&gt;Let's ponder this ASAP and get a solution, because I don't want these modules
&lt;br&gt;to fester too long outside a good home.
&lt;br&gt;&lt;br&gt;cheers
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/verifier-and-logging-back-in-the-sandbox-tp26251395p26251395.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26242528</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 821 was SUCCESSFUL (with 448 tests). Change made by Greg Wilkinson</title>
	<published>2009-11-06T22:49:31Z</published>
	<updated>2009-11-06T22:49:31Z</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-JETTY6-821/&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-JETTY6-821&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;448&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-JETTY6-821/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-JETTY6-821/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;
                            check bamboo 3
                        &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;
                             (5652)
                        &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-JETTY6-821/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-JETTY6-821/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;
                    2009-11-07 00:48:04,676 INFO - Terracotta 2.6.4, as of 20080822-130833 (Revision 9831 by cruise@rh4mo0 from 2.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;
                    2009-11-07 00:48:05,107 INFO - Configuration loaded from the file at '/opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/contrib/terracotta/src/test/resources/tc-config.xml'.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2009-11-07 00:48:13,437 INFO - Configuration loaded from the file at '/opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/contrib/terracotta/src/test/resources/tc-config.xml'.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2009-11-07 00:48:13,522 INFO - Log file: '/opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/target/terracotta/server-logs/terracotta-server.log'.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    2009-11-07 00:48:15,823 INFO - Configuration loaded from the file at '/opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/contrib/terracotta/src/test/resources/tc-config.xml'.&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-JETTY6-821/&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-JETTY6-821/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-JETTY6-821/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-JETTY6/build_logs/JETTY-JETTY6-821.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-JETTY6&amp;buildNumber=821&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-821-was-SUCCESSFUL-%28with-448-tests%29.-Change-made-by-Greg-Wilkinson-tp26242528p26242528.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26242404</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 820 has FAILED (1 tests failed, no failures were new). Change made by Greg Wilkinson</title>
	<published>2009-11-06T22:13:09Z</published>
	<updated>2009-11-06T22:13:09Z</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-JETTY6-820/&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-JETTY6-820&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;&lt;strong&gt;1/449&lt;/strong&gt; tests failed.
            &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-JETTY6-820/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-JETTY6-820/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;
                            check bamboo 2
                        &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;
                             (5651)
                        &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;vertical-align:top;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-820/test&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;Tests&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-JETTY6-820/test&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 test 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 colspan=&quot;2&quot; width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px&quot;&gt;
                            Failed Tests (1)
                        &lt;/td&gt;
                    &lt;/tr&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:#000;vertical-align:top;padding:5px 10px&quot;&gt;
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-820/test/org.mortbay.jetty.HttpGeneratorTest&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;HttpGeneratorTest&lt;/a&gt; :
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-820/test/org.mortbay.jetty.HttpGeneratorTest:testOutput&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Output&lt;/a&gt;
&lt;span style=&quot;color:#999&quot;&gt;(Existing)&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-JETTY6-820/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-JETTY6-820/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] There are test failures.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Please refer to /opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/modules/jetty/target/surefire-reports for the individual test results.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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-JETTY6-820/&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-JETTY6-820/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-JETTY6-820/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-JETTY6/build_logs/JETTY-JETTY6-820.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-JETTY6&amp;buildNumber=820&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-820-has-FAILED-%281-tests-failed%2C-no-failures-were-new%29.-Change-made-by-Greg-Wilkinson-tp26242404p26242404.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26242379</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 819 has FAILED (1 tests failed, no failures were new)</title>
	<published>2009-11-06T22:04:42Z</published>
	<updated>2009-11-06T22:04:42Z</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-JETTY6-819/&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-JETTY6-819&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 was manually triggered 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;1/449&lt;/strong&gt; tests failed.
            &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-JETTY6-819/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;vertical-align:top;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-819/test&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;Tests&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-JETTY6-819/test&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 test 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 colspan=&quot;2&quot; width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px&quot;&gt;
                            Failed Tests (1)
                        &lt;/td&gt;
                    &lt;/tr&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:#000;vertical-align:top;padding:5px 10px&quot;&gt;
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-819/test/org.mortbay.jetty.HttpGeneratorTest&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;HttpGeneratorTest&lt;/a&gt; :
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-819/test/org.mortbay.jetty.HttpGeneratorTest:testOutput&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Output&lt;/a&gt;
&lt;span style=&quot;color:#999&quot;&gt;(Existing)&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-JETTY6-819/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-JETTY6-819/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] There are test failures.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Please refer to /opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/modules/jetty/target/surefire-reports for the individual test results.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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-JETTY6-819/&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-JETTY6-819/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-JETTY6-819/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-JETTY6/build_logs/JETTY-JETTY6-819.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-JETTY6&amp;buildNumber=819&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-819-has-FAILED-%281-tests-failed%2C-no-failures-were-new%29-tp26242379p26242379.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26242322</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 818 has FAILED (1 tests failed, no failures were new). Change made by Greg Wilkinson</title>
	<published>2009-11-06T21:47:15Z</published>
	<updated>2009-11-06T21:47:15Z</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-JETTY6-818/&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-JETTY6-818&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;&lt;strong&gt;1/449&lt;/strong&gt; tests failed.
            &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-JETTY6-818/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-JETTY6-818/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;
                            check bamboo
                        &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;
                             (5650)
                        &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;vertical-align:top;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-818/test&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;Tests&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-JETTY6-818/test&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 test 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 colspan=&quot;2&quot; width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px&quot;&gt;
                            Failed Tests (1)
                        &lt;/td&gt;
                    &lt;/tr&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:#000;vertical-align:top;padding:5px 10px&quot;&gt;
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-818/test/org.mortbay.jetty.HttpGeneratorTest&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;HttpGeneratorTest&lt;/a&gt; :
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-818/test/org.mortbay.jetty.HttpGeneratorTest:testOutput&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Output&lt;/a&gt;
&lt;span style=&quot;color:#999&quot;&gt;(Existing)&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-JETTY6-818/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-JETTY6-818/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] There are test failures.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Please refer to /opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/modules/jetty/target/surefire-reports for the individual test results.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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-JETTY6-818/&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-JETTY6-818/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-JETTY6-818/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-JETTY6/build_logs/JETTY-JETTY6-818.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-JETTY6&amp;buildNumber=818&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-818-has-FAILED-%281-tests-failed%2C-no-failures-were-new%29.-Change-made-by-Greg-Wilkinson-tp26242322p26242322.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26242271</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 817 has FAILED (1 tests failed, no failures were new)</title>
	<published>2009-11-06T21:29:32Z</published>
	<updated>2009-11-06T21:29: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-JETTY6-817/&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-JETTY6-817&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 was manually triggered 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;1/449&lt;/strong&gt; tests failed.
            &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-JETTY6-817/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;vertical-align:top;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-817/test&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;Tests&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-JETTY6-817/test&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 test 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 colspan=&quot;2&quot; width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px&quot;&gt;
                            Failed Tests (1)
                        &lt;/td&gt;
                    &lt;/tr&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:#000;vertical-align:top;padding:5px 10px&quot;&gt;
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-817/test/org.mortbay.jetty.HttpGeneratorTest&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;HttpGeneratorTest&lt;/a&gt; :
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-817/test/org.mortbay.jetty.HttpGeneratorTest:testOutput&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Output&lt;/a&gt;
&lt;span style=&quot;color:#999&quot;&gt;(Existing)&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-JETTY6-817/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-JETTY6-817/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] There are test failures.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Please refer to /opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/modules/jetty/target/surefire-reports for the individual test results.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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-JETTY6-817/&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-JETTY6-817/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-JETTY6-817/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-JETTY6/build_logs/JETTY-JETTY6-817.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-JETTY6&amp;buildNumber=817&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-817-has-FAILED-%281-tests-failed%2C-no-failures-were-new%29-tp26242271p26242271.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26240732</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 816 has FAILED (1 tests failed, no failures were new). Change made by Greg Wilkinson</title>
	<published>2009-11-06T16:21:56Z</published>
	<updated>2009-11-06T16:21:56Z</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-JETTY6-816/&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-JETTY6-816&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;&lt;strong&gt;1/449&lt;/strong&gt; tests failed.
            &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-JETTY6-816/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-JETTY6-816/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;
                            &lt;a title=&quot;View this issue&quot; class=&quot;jiraLinkIcon&quot; href=&quot;http://jira.codehaus.org/browse/JETTY-1144?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&quot; id=&quot;viewIssueInJira:JETTY-1144&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-1144&lt;/a&gt; fixed multi-byte character overflow
                        &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;
                             (5648)
                        &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;vertical-align:top;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-816/test&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;Tests&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-JETTY6-816/test&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 test 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 colspan=&quot;2&quot; width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px&quot;&gt;
                            Failed Tests (1)
                        &lt;/td&gt;
                    &lt;/tr&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:#000;vertical-align:top;padding:5px 10px&quot;&gt;
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-816/test/org.mortbay.jetty.HttpGeneratorTest&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;HttpGeneratorTest&lt;/a&gt; :
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-816/test/org.mortbay.jetty.HttpGeneratorTest:testOutput&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Output&lt;/a&gt;
&lt;span style=&quot;color:#999&quot;&gt;(Existing)&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;vertical-align:top;padding:5px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-816/issues&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;JIRA Issues&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-JETTY6-816/issues&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 issue 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; alt=&quot;more&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 5px 10px&quot;&gt;
                                &lt;img src=&quot;http://jira.codehaus.org/images/icons/bug.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 5px 10px&quot;&gt;
                            &lt;a href=&quot;http://jira.codehaus.org/browse/JETTY-1144?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&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;JETTY-1144&lt;/a&gt;
                            &lt;span style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#999&quot;&gt;(Related)&lt;/span&gt;
                            &lt;br&gt;
                                multibyte character overflow.
                        &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-JETTY6-816/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-JETTY6-816/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] There are test failures.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Please refer to /opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/modules/jetty/target/surefire-reports for the individual test results.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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-JETTY6-816/&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-JETTY6-816/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-JETTY6-816/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-JETTY6/build_logs/JETTY-JETTY6-816.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-JETTY6&amp;buildNumber=816&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-816-has-FAILED-%281-tests-failed%2C-no-failures-were-new%29.-Change-made-by-Greg-Wilkinson-tp26240732p26240732.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26240678</id>
	<title>[Bamboo] Jetty - Jetty 6 Branch build 815 has FAILED (1 tests failed). Change made by Greg Wilkinson</title>
	<published>2009-11-06T16:16:36Z</published>
	<updated>2009-11-06T16:16:36Z</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-JETTY6-815/&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-JETTY6-815&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;&lt;strong&gt;1/449&lt;/strong&gt; tests failed.
            &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-JETTY6-815/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-JETTY6-815/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;
                            &lt;a title=&quot;View this issue&quot; class=&quot;jiraLinkIcon&quot; href=&quot;http://jira.codehaus.org/browse/JETTY-1144?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&quot; id=&quot;viewIssueInJira:JETTY-1144&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JETTY-1144&lt;/a&gt; fixed multi-byte character overflow
                        &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;
                             (5647)
                        &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;vertical-align:top;padding:5px 10px&quot;&gt;
                        &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-815/test&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;Tests&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-JETTY6-815/test&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 test 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 colspan=&quot;2&quot; width=&quot;100%&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px; font-weight:bold; color:#000;vertical-align:top;padding:10px 0 0 10px&quot;&gt;
                            Failed Tests (1)
                        &lt;/td&gt;
                    &lt;/tr&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:#000;vertical-align:top;padding:5px 10px&quot;&gt;
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-815/test/org.mortbay.jetty.HttpGeneratorTest&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;HttpGeneratorTest&lt;/a&gt; :
&lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-815/test/org.mortbay.jetty.HttpGeneratorTest:testOutput&quot; style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#000&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Output&lt;/a&gt;
&lt;span style=&quot;color:#999&quot;&gt;(New)&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;vertical-align:top;padding:5px 10px&quot;&gt;
                            &lt;a href=&quot;http://bamboo.ci.codehaus.org/browse/JETTY-JETTY6-815/issues&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;JIRA Issues&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-JETTY6-815/issues&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 issue 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; alt=&quot;more&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 5px 10px&quot;&gt;
                                &lt;img src=&quot;http://jira.codehaus.org/images/icons/bug.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 5px 10px&quot;&gt;
                            &lt;a href=&quot;http://jira.codehaus.org/browse/JETTY-1144?page=com.atlassian.jira.plugin.ext.bamboo%3Abamboo-build-results-tabpanel&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;JETTY-1144&lt;/a&gt;
                            &lt;span style=&quot;font-family: Arial, sans-serif; font-size: 13px;color:#999&quot;&gt;(Related)&lt;/span&gt;
                            &lt;br&gt;
                                multibyte character overflow.
                        &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-JETTY6-815/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-JETTY6-815/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] There are test failures.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    &lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &lt;td width=&quot;100%&quot; style=&quot;font-family:'Courier New', Courier, monospace; font-size: 12px; color:#000;vertical-align:top&quot;&gt;
                    Please refer to /opt/j2ee/domains/ci.codehaus.org/bamboo/webapps/atlassian-bamboo/data/atlassian-bamboo-2.3.1/xml-data/build-dir/JETTY-JETTY6/modules/jetty/target/surefire-reports for the individual test results.&lt;br /&gt;
                &lt;/td&gt;
                &lt;/tr&gt;
               &lt;tr&gt;
                &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-JETTY6-815/&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-JETTY6-815/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-JETTY6-815/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-JETTY6/build_logs/JETTY-JETTY6-815.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-JETTY6&amp;buildNumber=815&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;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bamboo--Jetty---Jetty-6-Branch-build-815-has-FAILED-%281-tests-failed%29.-Change-made-by-Greg-Wilkinson-tp26240678p26240678.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26233926</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-06T07:06:37Z</published>
	<updated>2009-11-06T07:06:37Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">i will try and look at this tonight or this weekend, I don't think I
&lt;br&gt;really ever paid attention to this module, but I agree if its serving
&lt;br&gt;soap goop its probably good to get 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=26233926&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 Fri, Nov 6, 2009 at 04:28, Axel Rose &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26233926&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;axel.roeslein@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Well, it was easy to make the code compilable but ...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have no success at runtime because the code relies somehow on
&lt;br&gt;&amp;gt; org.eclipse.jetty.server.handler._handlers being non volatile. This
&lt;br&gt;&amp;gt; has been changed in Jetty 7.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now it would be probably best to ask the original author lorban. Is he
&lt;br&gt;&amp;gt; (are you) still actively
&lt;br&gt;&amp;gt; working on this package?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Otherwise -- has somebody else time to help on this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It would be a real benefit for Jetty 7 to serve SOAP request IMO.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;  Axel
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26233926.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26229743</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-06T02:28:55Z</published>
	<updated>2009-11-06T02:28:55Z</updated>
	<author>
		<name>Axel Rose</name>
	</author>
	<content type="html">Well, it was easy to make the code compilable but ...
&lt;br&gt;&lt;br&gt;I have no success at runtime because the code relies somehow on
&lt;br&gt;org.eclipse.jetty.server.handler._handlers being non volatile. This
&lt;br&gt;has been changed in Jetty 7.
&lt;br&gt;&lt;br&gt;Now it would be probably best to ask the original author lorban. Is he
&lt;br&gt;(are you) still actively
&lt;br&gt;working on this package?
&lt;br&gt;&lt;br&gt;Otherwise -- has somebody else time to help on this?
&lt;br&gt;&lt;br&gt;It would be a real benefit for Jetty 7 to serve SOAP request IMO.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; Axel
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26229743.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26227425</id>
	<title>Re: iJetty on Android</title>
	<published>2009-11-05T22:18:13Z</published>
	<updated>2009-11-05T22:18:13Z</updated>
	<author>
		<name>Demetris-2</name>
	</author>
	<content type="html">&lt;br&gt;Hi Jan,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; are there any examples of servlets deployed on the iJetty server as 
&lt;br&gt;well?
&lt;br&gt;I will look around but just in case you can tell me it will help.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Jan Bartel wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Demetris,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yes, you can certainly run i-jetty both on the emulator and on a real 
&lt;br&gt;&amp;gt; handset.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you go to &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;&amp;nbsp;you'll see some links to
&lt;br&gt;&amp;gt; wiki pages over on the right-hand side that explains how to use it to
&lt;br&gt;&amp;gt; download webapps. The README in the distro should also have instructions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Demetris wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I want to host RESTful services on Android based mobile devices and 
&lt;br&gt;&amp;gt;&amp;gt; it seems
&lt;br&gt;&amp;gt;&amp;gt; to me that iJetty is the best current solution for that. Can I run 
&lt;br&gt;&amp;gt;&amp;gt; iJetty on the Android
&lt;br&gt;&amp;gt;&amp;gt; emulator and how do I &amp;quot;download&amp;quot; war files that I have build for the 
&lt;br&gt;&amp;gt;&amp;gt; Jetty web server?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;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;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/iJetty-on-Android-tp26175271p26227425.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210763</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-05T00:22:08Z</published>
	<updated>2009-11-05T00:22:08Z</updated>
	<author>
		<name>Axel Rose</name>
	</author>
	<content type="html">&amp;gt; The jetty j2se6 module has not been ported to jetty-7 yet.
&lt;br&gt;&lt;br&gt;Thanks for the information.
&lt;br&gt;&lt;br&gt;Perhaps I try this on my own.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&amp;nbsp; Axel
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26210763.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26206426</id>
	<title>Re: How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-04T15:16:26Z</published>
	<updated>2009-11-04T15:16:26Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">Axel,
&lt;br&gt;&lt;br&gt;The jetty j2se6 module has not been ported to jetty-7 yet.
&lt;br&gt;It is only available in jetty-6. Note you only need to check
&lt;br&gt;out and build &lt;a href=&quot;https://svn.codehaus.org/jetty/jetty/branches/jetty-6.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://svn.codehaus.org/jetty/jetty/branches/jetty-6.1&lt;/a&gt;&lt;br&gt;and it will also build most modules from contrib.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;Axel Rose wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; (repeated from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26206426&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I wanted to test the org.mortbay.jetty.j2se6 classes but couldn't succeed
&lt;br&gt;&amp;gt; to build them on my own using maven.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is what I did:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;svn co &lt;a href=&quot;http://svn.codehaus.org/jetty/jetty/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.codehaus.org/jetty/jetty/trunk&lt;/a&gt;&amp;nbsp;jetty
&lt;br&gt;&amp;gt; &amp;nbsp;cd jetty
&lt;br&gt;&amp;gt; &amp;nbsp;mvn -Pall-modules install
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This works well. Now
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;svn co &lt;a href=&quot;http://svn.codehaus.org/jetty-contrib/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.codehaus.org/jetty-contrib/trunk&lt;/a&gt;&amp;nbsp;jetty-contrib
&lt;br&gt;&amp;gt; &amp;nbsp;cd jetty-contrib
&lt;br&gt;&amp;gt; &amp;nbsp;mvn install
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; gives this error:
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; [INFO] Scanning for projects...
&lt;br&gt;&amp;gt; [INFO] ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [ERROR] FATAL ERROR
&lt;br&gt;&amp;gt; [INFO] ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] Error building POM (may not be this project's POM).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Project ID: org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Reason: Cannot find parent: org.mortbay.jetty:jetty-project for
&lt;br&gt;&amp;gt; project: org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;gt; for project org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [INFO] ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; [INFO] Trace
&lt;br&gt;&amp;gt; org.apache.maven.reactor.MavenExecutionException: Cannot find parent:
&lt;br&gt;&amp;gt; org.mortbay.jetty:jetty-project for project:
&lt;br&gt;&amp;gt; org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT for
&lt;br&gt;&amp;gt; project org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:378)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:292)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.maven.cli.MavenCli.main(MavenCli.java:287)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
&lt;br&gt;&amp;gt; Caused by: org.apache.maven.project.ProjectBuildingException: Cannot
&lt;br&gt;&amp;gt; find parent: org.mortbay.jetty:jetty-project for project:
&lt;br&gt;&amp;gt; org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT for
&lt;br&gt;&amp;gt; project org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(DefaultMavenProjectBuilder.java:1370)
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How could I continue?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What is the state of the contrib code anyway?
&lt;br&gt;&amp;gt; It looks to me as if this is not yet ported to Jetty 7 org.eclipse
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; &amp;nbsp;Axel
&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; &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;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&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=26206426&amp;i=1&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26206426.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26204777</id>
	<title>How to build org.mortbay.jetty.j2se6</title>
	<published>2009-11-04T13:17:29Z</published>
	<updated>2009-11-04T13:17:29Z</updated>
	<author>
		<name>Axel Rose</name>
	</author>
	<content type="html">(repeated from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26204777&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user@...&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;Hello all,
&lt;br&gt;&lt;br&gt;I wanted to test the org.mortbay.jetty.j2se6 classes but couldn't succeed
&lt;br&gt;to build them on my own using maven.
&lt;br&gt;&lt;br&gt;This is what I did:
&lt;br&gt;&lt;br&gt;&amp;nbsp;svn co &lt;a href=&quot;http://svn.codehaus.org/jetty/jetty/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.codehaus.org/jetty/jetty/trunk&lt;/a&gt;&amp;nbsp;jetty
&lt;br&gt;&amp;nbsp;cd jetty
&lt;br&gt;&amp;nbsp;mvn -Pall-modules install
&lt;br&gt;&lt;br&gt;This works well. Now
&lt;br&gt;&lt;br&gt;&amp;nbsp;svn co &lt;a href=&quot;http://svn.codehaus.org/jetty-contrib/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.codehaus.org/jetty-contrib/trunk&lt;/a&gt;&amp;nbsp;jetty-contrib
&lt;br&gt;&amp;nbsp;cd jetty-contrib
&lt;br&gt;&amp;nbsp;mvn install
&lt;br&gt;&lt;br&gt;gives this error:
&lt;br&gt;---
&lt;br&gt;[INFO] Scanning for projects...
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[ERROR] FATAL ERROR
&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Error building POM (may not be this project's POM).
&lt;br&gt;&lt;br&gt;&lt;br&gt;Project ID: org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&lt;br&gt;Reason: Cannot find parent: org.mortbay.jetty:jetty-project for
&lt;br&gt;project: org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;for project org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&lt;br&gt;&lt;br&gt;[INFO] ------------------------------------------------------------------------
&lt;br&gt;[INFO] Trace
&lt;br&gt;org.apache.maven.reactor.MavenExecutionException: Cannot find parent:
&lt;br&gt;org.mortbay.jetty:jetty-project for project:
&lt;br&gt;org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT for
&lt;br&gt;project org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:378)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:292)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.maven.cli.MavenCli.main(MavenCli.java:287)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
&lt;br&gt;Caused by: org.apache.maven.project.ProjectBuildingException: Cannot
&lt;br&gt;find parent: org.mortbay.jetty:jetty-project for project:
&lt;br&gt;org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT for
&lt;br&gt;project org.mortbay.jetty:jetty-contrib-parent:pom:7.0.0.1-SNAPSHOT
&lt;br&gt;&amp;nbsp; &amp;nbsp; at org.apache.maven.project.DefaultMavenProjectBuilder.assembleLineage(DefaultMavenProjectBuilder.java:1370)
&lt;br&gt;---
&lt;br&gt;&lt;br&gt;How could I continue?
&lt;br&gt;&lt;br&gt;What is the state of the contrib code anyway?
&lt;br&gt;It looks to me as if this is not yet ported to Jetty 7 org.eclipse
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&amp;nbsp;Axel
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-build-org.mortbay.jetty.j2se6-tp26204777p26204777.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26175612</id>
	<title>Re: iJetty on Android</title>
	<published>2009-11-02T23:05:58Z</published>
	<updated>2009-11-02T23:05:58Z</updated>
	<author>
		<name>Demetris-2</name>
	</author>
	<content type="html">&lt;br&gt;Super - I will give it a shot - thanks Jan.
&lt;br&gt;&lt;br&gt;Jan Bartel wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Demetris,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yes, you can certainly run i-jetty both on the emulator and on a real 
&lt;br&gt;&amp;gt; handset.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you go to &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;&amp;nbsp;you'll see some links to
&lt;br&gt;&amp;gt; wiki pages over on the right-hand side that explains how to use it to
&lt;br&gt;&amp;gt; download webapps. The README in the distro should also have instructions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Demetris wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I want to host RESTful services on Android based mobile devices and 
&lt;br&gt;&amp;gt;&amp;gt; it seems
&lt;br&gt;&amp;gt;&amp;gt; to me that iJetty is the best current solution for that. Can I run 
&lt;br&gt;&amp;gt;&amp;gt; iJetty on the Android
&lt;br&gt;&amp;gt;&amp;gt; emulator and how do I &amp;quot;download&amp;quot; war files that I have build for the 
&lt;br&gt;&amp;gt;&amp;gt; Jetty web server?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;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;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/iJetty-on-Android-tp26175271p26175612.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26175309</id>
	<title>Re: iJetty on Android</title>
	<published>2009-11-02T22:17:58Z</published>
	<updated>2009-11-02T22:17:58Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">Demetris,
&lt;br&gt;&lt;br&gt;Yes, you can certainly run i-jetty both on the emulator and on a real 
&lt;br&gt;handset.
&lt;br&gt;&lt;br&gt;If you go to &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;&amp;nbsp;you'll see some links to
&lt;br&gt;wiki pages over on the right-hand side that explains how to use it to
&lt;br&gt;download webapps. The README in the distro should also have instructions.
&lt;br&gt;&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;Demetris wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I want to host RESTful services on Android based mobile devices and it 
&lt;br&gt;&amp;gt; seems
&lt;br&gt;&amp;gt; to me that iJetty is the best current solution for that. Can I run 
&lt;br&gt;&amp;gt; iJetty on the Android
&lt;br&gt;&amp;gt; emulator and how do I &amp;quot;download&amp;quot; war files that I have build for the 
&lt;br&gt;&amp;gt; Jetty web server?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&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; &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;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&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=26175309&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/iJetty-on-Android-tp26175271p26175309.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26175271</id>
	<title>iJetty on Android</title>
	<published>2009-11-02T22:12:12Z</published>
	<updated>2009-11-02T22:12:12Z</updated>
	<author>
		<name>Demetris-2</name>
	</author>
	<content type="html">&lt;br&gt;Hi all,
&lt;br&gt;&lt;br&gt;I want to host RESTful services on Android based mobile devices and it seems
&lt;br&gt;to me that iJetty is the best current solution for that. Can I run 
&lt;br&gt;iJetty on the Android
&lt;br&gt;emulator and how do I &amp;quot;download&amp;quot; war files that I have build for the 
&lt;br&gt;Jetty web server?
&lt;br&gt;&lt;br&gt;Thanks
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/iJetty-on-Android-tp26175271p26175271.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26156652</id>
	<title>Re: org/mortbay/jetty/webapp/WebAppClassLoader previously initiated loading for a different type with name &quot;javax/management/MBeanServer&quot;</title>
	<published>2009-11-02T02:04:05Z</published>
	<updated>2009-11-02T02:04:05Z</updated>
	<author>
		<name>mjfan80</name>
	</author>
	<content type="html">i just try an upgrade with grails 1.2M3
&lt;br&gt;and i get a similar error, but with different class
&lt;br&gt;&lt;br&gt;Error executing script RunApp: loader constraint violation: loader (instance of &amp;lt;bootloader&amp;gt;) previously initiated loading for a different type with name &amp;quot;javax/management/NotificationListener&amp;quot;
&lt;br&gt;&lt;br&gt;what it could be?
&lt;br&gt;&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;vedil wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I have a web application which uses webwork, hibernate and c3p0 which was working on apache tomcat.
&lt;br&gt;I do not have any data source configured.
&lt;br&gt;&lt;br&gt;On jetty when i deploy the same war, the deployment was fine.
&lt;br&gt;But when i try to use the dynamic content where a server side action tries to access database i get this exception
&lt;br&gt;14:14:29,718 ERROR DispatcherUtils: Could not execute action
&lt;br&gt;java.lang.reflect.InvocationTargetException
&lt;br&gt;&lt;br&gt;the cause or it is, 
&lt;br&gt;Caused by: java.lang.LinkageError: loader constraint violation: loader (instance
&lt;br&gt;&amp;nbsp;of org/mortbay/jetty/webapp/WebAppClassLoader) previously initiated loading for
&lt;br&gt;&amp;nbsp;a different type with name &amp;quot;javax/management/MBeanServer&amp;quot;
&lt;br&gt;down the stack trace I see c3p0 classes and hibernate ones.
&lt;br&gt;&lt;br&gt;So I am assuming some how the application is not bale to access database.
&lt;br&gt;&lt;br&gt;I have searched a lot for this could not find any useful results some of the relevant links that i found are 
&lt;br&gt;1. &lt;a href=&quot;http://www.nabble.com/Help-a-sysadmin-smile-today-%3A)-tt16031477.html#a16031477&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Help-a-sysadmin-smile-today-%3A)-tt16031477.html#a16031477&lt;/a&gt;&lt;br&gt;2. &lt;a href=&quot;http://inventorsparadox.blogspot.com/2008_11_01_archive.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://inventorsparadox.blogspot.com/2008_11_01_archive.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I have tried the second link mentioned but without any success.
&lt;br&gt;&lt;br&gt;Can any body help me on this.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/org-mortbay-jetty-webapp-WebAppClassLoader-previously-initiated-loading-for-a-different-type-with-name-%22javax-management-MBeanServer%22-tp21743839p26156652.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26124096</id>
	<title>LocalConnector</title>
	<published>2009-10-29T19:25:49Z</published>
	<updated>2009-10-29T19:25:49Z</updated>
	<author>
		<name>Gregw</name>
	</author>
	<content type="html">&lt;br&gt;simone,
&lt;br&gt;&lt;br&gt;the updated localconnector is really cool.
&lt;br&gt;It makes concurrent unit testing so much simpler!
&lt;br&gt;&lt;br&gt;&lt;br&gt;cheers
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/LocalConnector-tp26124096p26124096.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26032387</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-23T12:56:05Z</published>
	<updated>2009-10-23T12:56:05Z</updated>
	<author>
		<name>Greg Wilkins</name>
	</author>
	<content type="html">&lt;br&gt;Jesse,
&lt;br&gt;&lt;br&gt;I agree.
&lt;br&gt;&lt;br&gt;In some ways, deploy, verifier and centralized logging are all about
&lt;br&gt;bundling of jetty in various ways - so they almost kind of live better
&lt;br&gt;at codehaus anyway.
&lt;br&gt;&lt;br&gt;Having said that, the existing deployers are definitely part of core
&lt;br&gt;and we do need to replace them eventually with a cleaner, meaner, leaner
&lt;br&gt;implementations.
&lt;br&gt;&lt;br&gt;So I can see the deplay manager going over sooner.... but potentially
&lt;br&gt;into the existing jetty-deploy package.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&lt;br&gt;&lt;br&gt;Jesse McConnell wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; All this being said...I wanted to take a quick step back and start the
&lt;br&gt;&amp;gt; review of the artifacts going into 7.0.1 as this has direct bearing on
&lt;br&gt;&amp;gt; that...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; there are a couple of things in jetty trunk that are currently
&lt;br&gt;&amp;gt; deploying snapshot wise into jetty @ eclipse maven central artifact
&lt;br&gt;&amp;gt; space and that bears review with this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; namely the jetty-webapp-verifier and the jetty-centalized-logging bits
&lt;br&gt;&amp;gt; and pieces..
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So, with the idea in mind that jetty @ eclipse is supposed to be best
&lt;br&gt;&amp;gt; of breed components and represent the _core_ of jetty I am thinking
&lt;br&gt;&amp;gt; that maybe we want to change this a bit.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I propose that maybe the above artifacts and this jetty-deployer work
&lt;br&gt;&amp;gt; all go back to codehaus trunk for stewing and to gain some community
&lt;br&gt;&amp;gt; traction. &amp;nbsp;Then if and when these artifacts gain a larger backing and
&lt;br&gt;&amp;gt; usage and we want to accept them into honest to god jetty core, we go
&lt;br&gt;&amp;gt; ahead and move them over (following whatever processes we need).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This represents a bit of backpedaling on my part (ok maybe a lot) as I
&lt;br&gt;&amp;gt; have been an advocate of just getting new development going on at
&lt;br&gt;&amp;gt; eclipse, but at least for now I am thinking that we ought to let
&lt;br&gt;&amp;gt; things stew at codehaus longer...and also focus on making sure that
&lt;br&gt;&amp;gt; eclipse side is a trim lean mean fighting machine, both code and
&lt;br&gt;&amp;gt; process wise within eclipse.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; thoughts?
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26032387.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26029393</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-23T09:22:48Z</published>
	<updated>2009-10-23T09:22:48Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">All this being said...I wanted to take a quick step back and start the
&lt;br&gt;review of the artifacts going into 7.0.1 as this has direct bearing on
&lt;br&gt;that...
&lt;br&gt;&lt;br&gt;there are a couple of things in jetty trunk that are currently
&lt;br&gt;deploying snapshot wise into jetty @ eclipse maven central artifact
&lt;br&gt;space and that bears review with this.
&lt;br&gt;&lt;br&gt;namely the jetty-webapp-verifier and the jetty-centalized-logging bits
&lt;br&gt;and pieces..
&lt;br&gt;&lt;br&gt;So, with the idea in mind that jetty @ eclipse is supposed to be best
&lt;br&gt;of breed components and represent the _core_ of jetty I am thinking
&lt;br&gt;that maybe we want to change this a bit.
&lt;br&gt;&lt;br&gt;I propose that maybe the above artifacts and this jetty-deployer work
&lt;br&gt;all go back to codehaus trunk for stewing and to gain some community
&lt;br&gt;traction. &amp;nbsp;Then if and when these artifacts gain a larger backing and
&lt;br&gt;usage and we want to accept them into honest to god jetty core, we go
&lt;br&gt;ahead and move them over (following whatever processes we need).
&lt;br&gt;&lt;br&gt;This represents a bit of backpedaling on my part (ok maybe a lot) as I
&lt;br&gt;have been an advocate of just getting new development going on at
&lt;br&gt;eclipse, but at least for now I am thinking that we ought to let
&lt;br&gt;things stew at codehaus longer...and also focus on making sure that
&lt;br&gt;eclipse side is a trim lean mean fighting machine, both code and
&lt;br&gt;process wise within eclipse.
&lt;br&gt;&lt;br&gt;thoughts?
&lt;br&gt;&lt;br&gt;jesse
&lt;br&gt;&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=26029393&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 Thu, Oct 22, 2009 at 22:28, Michael Gorovoy &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26029393&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michael@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; +1 for Jesse, and here's my 2 cents worth of thoughts on this issues.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It would take a very sophisticated developer as well as a major effort right
&lt;br&gt;&amp;gt; now to be able to re-wire the application deployment lifecycle, and I agree
&lt;br&gt;&amp;gt; with Jesse that Jetty needs to have a way to extend the core lifecycle at
&lt;br&gt;&amp;gt; the configuration phase to include additional arbitrary steps at any point
&lt;br&gt;&amp;gt; in the lifecycle, as well as change the cofiguration of the existing steps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I would suggest to specify the application deployment lifecycle in terms of
&lt;br&gt;&amp;gt; 'goals' describing where the application is in the deployment process, and
&lt;br&gt;&amp;gt; 'transitions', that define the conditions that need to be met and actions
&lt;br&gt;&amp;gt; that need to be performed to move the application to the next 'goal' in the
&lt;br&gt;&amp;gt; lifecycle.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Each goal would be reachable by any number of transitions, but would have
&lt;br&gt;&amp;gt; only one exit transition associated with it. Each goal could be either
&lt;br&gt;&amp;gt; stateful or transitional. When deployment process reaches a stateful goal,
&lt;br&gt;&amp;gt; the lifecycle will not process the next transition until it is externally
&lt;br&gt;&amp;gt; re-activated, whereas when deployment process reaches a transitional goal,
&lt;br&gt;&amp;gt; the next transition will be processed immediately after reaching this goal.
&lt;br&gt;&amp;gt; Each transition would have two possible result goals that it can bring the
&lt;br&gt;&amp;gt; lifecycle to, one for success and the other one for failure.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As long as the new architecture will be flexible enough to allow configuring
&lt;br&gt;&amp;gt; an arbitrary deployment lifecycle using the above abstractions, with goals
&lt;br&gt;&amp;gt; possibly represented by entries in a data structure, and transitions defined
&lt;br&gt;&amp;gt; by classes that implement a specified interface, it would be possible to
&lt;br&gt;&amp;gt; achieve the configurability and avoid having to create an one-size-fits-all
&lt;br&gt;&amp;gt; solution.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Michael Gorovoy / &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26029393&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michael@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Oct 22, 2009 at 9:08 PM, Jesse McConnell &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26029393&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jesse.mcconnell@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; lets see...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I see the action of wiring up something like the webapp verifier as a
&lt;br&gt;&amp;gt;&amp;gt; step in the deployment of a webapp, maybe not a full on 'STATE&amp;quot; but
&lt;br&gt;&amp;gt;&amp;gt; certainly one step in the process
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; so long as there is a simple way of arbitrarily wiring functionality X
&lt;br&gt;&amp;gt;&amp;gt; to the lifecycle of deployment I am pretty happy personally
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; and that functionality X should be able to run the gambit from webapp
&lt;br&gt;&amp;gt;&amp;gt; verification, to mailing a mailing list that a webapp has deployed, to
&lt;br&gt;&amp;gt;&amp;gt; complex scenarios involving coordination in a cluster
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I should also be able to wire those up so they execute in a simple
&lt;br&gt;&amp;gt;&amp;gt; order as well...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When I was looking at wiring up the webapp verifier previously I added
&lt;br&gt;&amp;gt;&amp;gt; it as a part of webapp configuration itself which it really wasn't I
&lt;br&gt;&amp;gt;&amp;gt; guess, it was more of a sanity check that this webapp was going to be
&lt;br&gt;&amp;gt;&amp;gt; allowed to deploy at all, much less get configured, etc...so it really
&lt;br&gt;&amp;gt;&amp;gt; should have been able to slot in somewhere prior to webapp
&lt;br&gt;&amp;gt;&amp;gt; configuration even taking place....
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; we can do a lot of this kinda stuff as jetty developers, but my
&lt;br&gt;&amp;gt;&amp;gt; concern here is that I see definite points in here that a third party
&lt;br&gt;&amp;gt;&amp;gt; could want to insert their own functionality in the deployment process
&lt;br&gt;&amp;gt;&amp;gt; and it currently takes a harder core developer to implement
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; anyway, I have said my bit...i like the idea of a simple framework
&lt;br&gt;&amp;gt;&amp;gt; located on this part of jetty that allows third parties to implement
&lt;br&gt;&amp;gt;&amp;gt; new workflows on top of (like the jetty maven plugin for example)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; jesse
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; jesse mcconnell
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26029393&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jesse.mcconnell@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Thu, Oct 22, 2009 at 18:48, Greg Wilkins &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26029393&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gregw@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Jesse McConnell wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; Core lifecycle? certainly not
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt; a common use case for workflow as it relates to deployment, sure
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; If Stage is the only optional workflow state that we can think of,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; then I'd prefer to have it in the base state machine and avoid
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; the hassles of a dynamically extensible state machine that would
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; be required to optionally support extra states.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; cheers
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;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;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;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;&amp;gt;
&lt;br&gt;&amp;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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26029393.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26020452</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-22T20:28:32Z</published>
	<updated>2009-10-22T20:28:32Z</updated>
	<author>
		<name>Michael Gorovoy</name>
	</author>
	<content type="html">+1 for Jesse, and here&amp;#39;s my 2 cents worth of thoughts on this issues.&lt;br&gt;&lt;br&gt;It would take a very sophisticated developer as well as a major effort right now to be able to re-wire the application deployment lifecycle, and I agree with Jesse that Jetty needs to have a way to extend the core lifecycle at the configuration phase to include additional arbitrary steps at any point in the lifecycle, as well as change the cofiguration of the existing steps. &lt;br&gt;

&lt;br&gt;I would suggest to specify the application deployment lifecycle in terms of &amp;#39;goals&amp;#39; describing where the application is in the deployment process, and &amp;#39;transitions&amp;#39;, that define the conditions that need to be met and actions that need to be performed to move the application to the next &amp;#39;goal&amp;#39; in the lifecycle.&lt;br&gt;

&lt;br&gt;Each goal would be reachable by any number of transitions, but would have only one exit transition associated with it. Each goal could be either stateful or transitional. When deployment process reaches a stateful goal, the lifecycle will not process the next transition until it is externally re-activated, whereas when deployment process reaches a transitional goal,  the next transition will be processed immediately after reaching this goal. Each transition would have two possible result goals that it can bring the lifecycle to, one for success and the other one for failure. &lt;br&gt;

&lt;br&gt;As long as the new architecture will be flexible enough to allow configuring an arbitrary deployment lifecycle using the above abstractions, with goals possibly represented by entries in a data structure, and transitions defined by classes that implement a specified interface, it would be possible to achieve the configurability and avoid having to create an one-size-fits-all solution.&lt;br&gt;

&lt;br clear=&quot;all&quot;&gt;Michael Gorovoy / &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26020452&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michael@...&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Oct 22, 2009 at 9:08 PM, Jesse McConnell &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26020452&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jesse.mcconnell@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

lets see...&lt;br&gt;
&lt;br&gt;
I see the action of wiring up something like the webapp verifier as a&lt;br&gt;
step in the deployment of a webapp, maybe not a full on &amp;#39;STATE&amp;quot; but&lt;br&gt;
certainly one step in the process&lt;br&gt;
&lt;br&gt;
so long as there is a simple way of arbitrarily wiring functionality X&lt;br&gt;
to the lifecycle of deployment I am pretty happy personally&lt;br&gt;
&lt;br&gt;
and that functionality X should be able to run the gambit from webapp&lt;br&gt;
verification, to mailing a mailing list that a webapp has deployed, to&lt;br&gt;
complex scenarios involving coordination in a cluster&lt;br&gt;
&lt;br&gt;
I should also be able to wire those up so they execute in a simple&lt;br&gt;
order as well...&lt;br&gt;
&lt;br&gt;
When I was looking at wiring up the webapp verifier previously I added&lt;br&gt;
it as a part of webapp configuration itself which it really wasn&amp;#39;t I&lt;br&gt;
guess, it was more of a sanity check that this webapp was going to be&lt;br&gt;
allowed to deploy at all, much less get configured, etc...so it really&lt;br&gt;
should have been able to slot in somewhere prior to webapp&lt;br&gt;
configuration even taking place....&lt;br&gt;
&lt;br&gt;
we can do a lot of this kinda stuff as jetty developers, but my&lt;br&gt;
concern here is that I see definite points in here that a third party&lt;br&gt;
could want to insert their own functionality in the deployment process&lt;br&gt;
and it currently takes a harder core developer to implement&lt;br&gt;
&lt;br&gt;
anyway, I have said my bit...i like the idea of a simple framework&lt;br&gt;
located on this part of jetty that allows third parties to implement&lt;br&gt;
new workflows on top of (like the jetty maven plugin for example)&lt;br&gt;
&lt;div class=&quot;im&quot;&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=26020452&amp;i=2&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;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;On Thu, Oct 22, 2009 at 18:48, Greg Wilkins &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26020452&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gregw@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; Jesse McConnell wrote:&lt;br&gt;
&amp;gt;&amp;gt; Core lifecycle? certainly not&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; a common use case for workflow as it relates to deployment, sure&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; If Stage is the only optional workflow state that we can think of,&lt;br&gt;
&amp;gt; then I&amp;#39;d prefer to have it in the base state machine and avoid&lt;br&gt;
&amp;gt; the hassles of a dynamically extensible state machine that would&lt;br&gt;
&amp;gt; be required to optionally support extra states.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; cheers&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&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;_blank&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;br&gt;
&lt;br&gt;
---------------------------------------------------------------------&lt;br&gt;
To unsubscribe from this list, please visit:&lt;br&gt;
&lt;br&gt;
    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_blank&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;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26020452.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26019504</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-22T18:08:58Z</published>
	<updated>2009-10-22T18:08:58Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">lets see...
&lt;br&gt;&lt;br&gt;I see the action of wiring up something like the webapp verifier as a
&lt;br&gt;step in the deployment of a webapp, maybe not a full on 'STATE&amp;quot; but
&lt;br&gt;certainly one step in the process
&lt;br&gt;&lt;br&gt;so long as there is a simple way of arbitrarily wiring functionality X
&lt;br&gt;to the lifecycle of deployment I am pretty happy personally
&lt;br&gt;&lt;br&gt;and that functionality X should be able to run the gambit from webapp
&lt;br&gt;verification, to mailing a mailing list that a webapp has deployed, to
&lt;br&gt;complex scenarios involving coordination in a cluster
&lt;br&gt;&lt;br&gt;I should also be able to wire those up so they execute in a simple
&lt;br&gt;order as well...
&lt;br&gt;&lt;br&gt;When I was looking at wiring up the webapp verifier previously I added
&lt;br&gt;it as a part of webapp configuration itself which it really wasn't I
&lt;br&gt;guess, it was more of a sanity check that this webapp was going to be
&lt;br&gt;allowed to deploy at all, much less get configured, etc...so it really
&lt;br&gt;should have been able to slot in somewhere prior to webapp
&lt;br&gt;configuration even taking place....
&lt;br&gt;&lt;br&gt;we can do a lot of this kinda stuff as jetty developers, but my
&lt;br&gt;concern here is that I see definite points in here that a third party
&lt;br&gt;could want to insert their own functionality in the deployment process
&lt;br&gt;and it currently takes a harder core developer to implement
&lt;br&gt;&lt;br&gt;anyway, I have said my bit...i like the idea of a simple framework
&lt;br&gt;located on this part of jetty that allows third parties to implement
&lt;br&gt;new workflows on top of (like the jetty maven plugin for example)
&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=26019504&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 Thu, Oct 22, 2009 at 18:48, Greg Wilkins &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26019504&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gregw@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Jesse McConnell wrote:
&lt;br&gt;&amp;gt;&amp;gt; Core lifecycle? certainly not
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; a common use case for workflow as it relates to deployment, sure
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If Stage is the only optional workflow state that we can think of,
&lt;br&gt;&amp;gt; then I'd prefer to have it in the base state machine and avoid
&lt;br&gt;&amp;gt; the hassles of a dynamically extensible state machine that would
&lt;br&gt;&amp;gt; be required to optionally support extra states.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cheers
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26019504.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26018972</id>
	<title>Another deployment mode was: Deployment manager states</title>
	<published>2009-10-22T16:50:43Z</published>
	<updated>2009-10-22T16:50:43Z</updated>
	<author>
		<name>Gregw</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;A frequent request that we get is to have the jetty-maven plugin able to
&lt;br&gt;run more than 1 webapp at once... both in development (edit the sources)
&lt;br&gt;mode.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I don't think that could be done in the traditional mvn jetty-run style,
&lt;br&gt;but perhaps we could have a MavenDeployer configuration of the deployment
&lt;br&gt;manager that would discover and configure webapps from 1 or more maven
&lt;br&gt;projects. &amp;nbsp; It could then share some/most of the guts of the maven
&lt;br&gt;jetty plugin and setup classpaths etc from the project and run in
&lt;br&gt;development mode.
&lt;br&gt;&lt;br&gt;&lt;br&gt;cheers
&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26018972.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26018958</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-22T16:48:16Z</published>
	<updated>2009-10-22T16:48:16Z</updated>
	<author>
		<name>Gregw</name>
	</author>
	<content type="html">Jesse McConnell wrote:
&lt;br&gt;&amp;gt; Core lifecycle? certainly not
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; a common use case for workflow as it relates to deployment, sure
&lt;br&gt;&lt;br&gt;&lt;br&gt;If Stage is the only optional workflow state that we can think of,
&lt;br&gt;then I'd prefer to have it in the base state machine and avoid
&lt;br&gt;the hassles of a dynamically extensible state machine that would
&lt;br&gt;be required to optionally support extra states.
&lt;br&gt;&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&lt;br&gt;&lt;br&gt;&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26018958.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26002636</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-21T18:09:44Z</published>
	<updated>2009-10-21T18:09:44Z</updated>
	<author>
		<name>jmcconnell</name>
	</author>
	<content type="html">Core lifecycle? certainly not
&lt;br&gt;&lt;br&gt;a common use case for workflow as it relates to deployment, sure
&lt;br&gt;&lt;br&gt;staged is not something to get hung up on imo, it is one example of a
&lt;br&gt;phase in a lifecycle of deployment, one of a full on cornucopia
&lt;br&gt;(thanksgiving coming up!) of potential deployment scenarios which is
&lt;br&gt;at the heart of the discussion at this point. &amp;nbsp;in reality, we have run
&lt;br&gt;across a couple of scenarios that deployment needed to be extended in
&lt;br&gt;arbitrary ways. &amp;nbsp;as developers we certainly have the ability to 'make
&lt;br&gt;something work' but as engineers the desire is to create something
&lt;br&gt;that others with less internals knowledge can easily work with to
&lt;br&gt;extend
&lt;br&gt;&lt;br&gt;jetty by default has a simple state machine worth of deployment
&lt;br&gt;'steps' to its workflow...and ideally we would like a way to embrace
&lt;br&gt;and extend that in a simple and easy to visualize way...something that
&lt;br&gt;could wire up arbitrary workflows, from the simple webapp appears in a
&lt;br&gt;directory and it gets unpacked and deployed (oh so simple, ya I know
&lt;br&gt;:P) to the most convoluted cluster coordinated and webapp registered
&lt;br&gt;human workflow finger clicky required audited and reaudited ugly
&lt;br&gt;workflow someone could create (probably a government committee)
&lt;br&gt;&lt;br&gt;cheers,
&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=26002636&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, Oct 21, 2009 at 17:49, Jan Bartel &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26002636&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;janb@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm not totally onboard (yet) with the STAGED state. Are we saying
&lt;br&gt;&amp;gt; that is part of the core lifecycle of deployment? It seems to me
&lt;br&gt;&amp;gt; like something that a specific _type_ of deployer might want
&lt;br&gt;&amp;gt; to implement.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jesse's example makes it sound like it is some verification step
&lt;br&gt;&amp;gt; after it is started (eg can you hit the app and get back something?)
&lt;br&gt;&amp;gt; before the context is declared to be LIVE?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jesse McConnell wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; OK - so I understand STAGED now.   It is like it's running
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but the load balancer has not been told yet to direct
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; real load to it.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Yes, or I have some application I want to test with live data through
&lt;br&gt;&amp;gt;&amp;gt; a restricted environment like only though some vpn connection to
&lt;br&gt;&amp;gt;&amp;gt; ensure it 'looks right' before openning to the public or 'is wired up
&lt;br&gt;&amp;gt;&amp;gt; to all the correct databases' or any of the countless fearful
&lt;br&gt;&amp;gt;&amp;gt; situations companies processes get themselves into to 'approving
&lt;br&gt;&amp;gt;&amp;gt; something to go live'
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thus we do need a better name for the initial state
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; so it does not clash with the JEE unavailable state.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Let's call it DISCOVERED for now (now == this email
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; or until a better suggestion comes up).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fair enough, Discovered works for clusters as well, the webapp has
&lt;br&gt;&amp;gt;&amp;gt; been pushed out the all of the machines on the cluster and is in
&lt;br&gt;&amp;gt;&amp;gt; discovered state...ie everyone knows about it.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This gives me the side thought of a corridinated cluster
&lt;br&gt;&amp;gt;&amp;gt; deployment...where there is corridination of the lifecycles, ie, ALL
&lt;br&gt;&amp;gt;&amp;gt; machines on cluster have to be in DISCOVERED before they are told to
&lt;br&gt;&amp;gt;&amp;gt; advance to next phase, and so on and so forth, ensuring that the
&lt;br&gt;&amp;gt;&amp;gt; webapps transition from phase to phase in lockstep.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I'm cool with these being meta states that hide the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; nuts and bolts below.  But we do need to know
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; exactly what the nuts and bolts are.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I think the meta states we have are:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; DISCOVERED :   constructed, !validated !linked !configured
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; DEPLOYED:   constructed, validated, linked, configured, !started
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; UNAVAILABLE:  started, Unavailable(in JEE sense)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; STAGED:  started, !active
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; LIVE:  started, active
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; joakim has some pretty graphics for this he should bust out here
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For most webapps, STAGED will automatically flow through to LIVE
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; (ie if there is no other switch needed to direct traffic to it).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Or it may need even need a manual step in some environments.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; agreed, I think the gist behind joakim's efforts are rooted in the
&lt;br&gt;&amp;gt;&amp;gt; 'one size does not fit all' approach to webapp deployment.  So instead
&lt;br&gt;&amp;gt;&amp;gt; of codifying it strictly in interfaces you extend, you make it more
&lt;br&gt;&amp;gt;&amp;gt; generally extendable such that the default deployer for jetty is
&lt;br&gt;&amp;gt;&amp;gt; functionally equivalent in lifecycle as to how it is now, but in other
&lt;br&gt;&amp;gt;&amp;gt; scenarios where the user needs a staged environment, or the ability to
&lt;br&gt;&amp;gt;&amp;gt; add in a webapp registry service, or even the lockstep cluster stuff I
&lt;br&gt;&amp;gt;&amp;gt; mentioned above you have the ability to wire up the workflow as needed
&lt;br&gt;&amp;gt;&amp;gt; calling out the bits of functionality as needed.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; at least that is how I see it
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; UNAVAILABLE: might transit to STAGED if the unavailable exception
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; had a timeout and on a subsequent attempt to unavailable status
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; was clear.   We might need to extend jetty with some callback for
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; this occurrence?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I see it that in the normal jetty deployer sense, STAGED is not even a
&lt;br&gt;&amp;gt;&amp;gt; factor as it is not a part of the default deployer workflow...just
&lt;br&gt;&amp;gt;&amp;gt; that it will be a very popular component (maybe even developed as a
&lt;br&gt;&amp;gt;&amp;gt; separate module that they activate and wire in via the deployer
&lt;br&gt;&amp;gt;&amp;gt; workflow configuration).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I could see users like google app engine tie into this, create a
&lt;br&gt;&amp;gt;&amp;gt; custom deployment workflow and bundle it up as its own maven artifact,
&lt;br&gt;&amp;gt;&amp;gt; drop it into lib, drop in a jetty-mydeployment.xml file and good to
&lt;br&gt;&amp;gt;&amp;gt; go.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Shoot, that would make it really easy to make an ascii image of a
&lt;br&gt;&amp;gt;&amp;gt; dinosaur that is wired to print to console when a webapp
&lt;br&gt;&amp;gt;&amp;gt; deploys...awesome test case! :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt;&amp;gt; jesse
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;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;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Jan Bartel, Webtide LLC | &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26002636&amp;i=2&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;&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26002636.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26001487</id>
	<title>Re: Deployment manager states</title>
	<published>2009-10-21T15:49:59Z</published>
	<updated>2009-10-21T15:49:59Z</updated>
	<author>
		<name>janb</name>
	</author>
	<content type="html">I'm not totally onboard (yet) with the STAGED state. Are we saying
&lt;br&gt;that is part of the core lifecycle of deployment? It seems to me
&lt;br&gt;like something that a specific _type_ of deployer might want
&lt;br&gt;to implement.
&lt;br&gt;&lt;br&gt;Jesse's example makes it sound like it is some verification step
&lt;br&gt;after it is started (eg can you hit the app and get back something?)
&lt;br&gt;before the context is declared to be LIVE?
&lt;br&gt;&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;Jesse McConnell wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; OK - so I understand STAGED now. &amp;nbsp; It is like it's running
&lt;br&gt;&amp;gt;&amp;gt; but the load balancer has not been told yet to direct
&lt;br&gt;&amp;gt;&amp;gt; real load to it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes, or I have some application I want to test with live data through
&lt;br&gt;&amp;gt; a restricted environment like only though some vpn connection to
&lt;br&gt;&amp;gt; ensure it 'looks right' before openning to the public or 'is wired up
&lt;br&gt;&amp;gt; to all the correct databases' or any of the countless fearful
&lt;br&gt;&amp;gt; situations companies processes get themselves into to 'approving
&lt;br&gt;&amp;gt; something to go live'
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Thus we do need a better name for the initial state
&lt;br&gt;&amp;gt;&amp;gt; so it does not clash with the JEE unavailable state.
&lt;br&gt;&amp;gt;&amp;gt; Let's call it DISCOVERED for now (now == this email
&lt;br&gt;&amp;gt;&amp;gt; or until a better suggestion comes up).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Fair enough, Discovered works for clusters as well, the webapp has
&lt;br&gt;&amp;gt; been pushed out the all of the machines on the cluster and is in
&lt;br&gt;&amp;gt; discovered state...ie everyone knows about it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This gives me the side thought of a corridinated cluster
&lt;br&gt;&amp;gt; deployment...where there is corridination of the lifecycles, ie, ALL
&lt;br&gt;&amp;gt; machines on cluster have to be in DISCOVERED before they are told to
&lt;br&gt;&amp;gt; advance to next phase, and so on and so forth, ensuring that the
&lt;br&gt;&amp;gt; webapps transition from phase to phase in lockstep.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I'm cool with these being meta states that hide the
&lt;br&gt;&amp;gt;&amp;gt; nuts and bolts below. &amp;nbsp;But we do need to know
&lt;br&gt;&amp;gt;&amp;gt; exactly what the nuts and bolts are.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I think the meta states we have are:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; DISCOVERED : &amp;nbsp; constructed, !validated !linked !configured
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; DEPLOYED: &amp;nbsp; constructed, validated, linked, configured, !started
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; UNAVAILABLE: &amp;nbsp;started, Unavailable(in JEE sense)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; STAGED: &amp;nbsp;started, !active
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; LIVE: &amp;nbsp;started, active
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; joakim has some pretty graphics for this he should bust out here
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; For most webapps, STAGED will automatically flow through to LIVE
&lt;br&gt;&amp;gt;&amp;gt; (ie if there is no other switch needed to direct traffic to it).
&lt;br&gt;&amp;gt;&amp;gt; Or it may need even need a manual step in some environments.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; agreed, I think the gist behind joakim's efforts are rooted in the
&lt;br&gt;&amp;gt; 'one size does not fit all' approach to webapp deployment. &amp;nbsp;So instead
&lt;br&gt;&amp;gt; of codifying it strictly in interfaces you extend, you make it more
&lt;br&gt;&amp;gt; generally extendable such that the default deployer for jetty is
&lt;br&gt;&amp;gt; functionally equivalent in lifecycle as to how it is now, but in other
&lt;br&gt;&amp;gt; scenarios where the user needs a staged environment, or the ability to
&lt;br&gt;&amp;gt; add in a webapp registry service, or even the lockstep cluster stuff I
&lt;br&gt;&amp;gt; mentioned above you have the ability to wire up the workflow as needed
&lt;br&gt;&amp;gt; calling out the bits of functionality as needed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; at least that is how I see it
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; UNAVAILABLE: might transit to STAGED if the unavailable exception
&lt;br&gt;&amp;gt;&amp;gt; had a timeout and on a subsequent attempt to unavailable status
&lt;br&gt;&amp;gt;&amp;gt; was clear. &amp;nbsp; We might need to extend jetty with some callback for
&lt;br&gt;&amp;gt;&amp;gt; this occurrence?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I see it that in the normal jetty deployer sense, STAGED is not even a
&lt;br&gt;&amp;gt; factor as it is not a part of the default deployer workflow...just
&lt;br&gt;&amp;gt; that it will be a very popular component (maybe even developed as a
&lt;br&gt;&amp;gt; separate module that they activate and wire in via the deployer
&lt;br&gt;&amp;gt; workflow configuration).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I could see users like google app engine tie into this, create a
&lt;br&gt;&amp;gt; custom deployment workflow and bundle it up as its own maven artifact,
&lt;br&gt;&amp;gt; drop it into lib, drop in a jetty-mydeployment.xml file and good to
&lt;br&gt;&amp;gt; go.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Shoot, that would make it really easy to make an ascii image of a
&lt;br&gt;&amp;gt; dinosaur that is wired to print to console when a webapp
&lt;br&gt;&amp;gt; deploys...awesome test case! :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; cheers,
&lt;br&gt;&amp;gt; jesse
&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; &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;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&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=26001487&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;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deployment-manager-states-tp25998974p26001487.html" />
</entry>

</feed>
