SSL com jetty

Alguém já implementou SSL no jetty?
Estou tentando mas sem sucesso. Utilizei estes 2 sites como base: http://atomic.exist-db.org/HowTo/JettySSL e http://docs.codehaus.org/display/JETTY/How+to+configure+SSL#HowtoconfigureSSL-step3
O meu xml jetty.xml está assim:

<Call name="addListener">
    <Arg>
        <New class="org.mortbay.http.SunJsseListener">
            <Set name="Port">8443</Set>
            <Set name="PoolName">P1</Set>
            <Set name="MaxIdleTimeMs">30000</Set>
            <Set name="lowResources">30</Set>
            <Set name="LowResourcePersistTimeMs">2000</Set>
            <Set name="Keystore">
                <SystemProperty name="jetty.home"
                        default="."/>/etc/demokeystore</Set>
            <Set name="Password">secret</Set>
            <Set name="KeyPassword">secret</Set>
            <Set name="HttpHandler">
                <New class="org.mortbay.http.handler.MsieSslHandler">
                    <Set name="UserAgentSubString">MSIE 5</Set>
                </New>
            </Set>
        </New>
    </Arg>
</Call> 

Já fiz diversas alterações e tentativas, mas sempre dá o mesmo erro no log do jetty:

org.xml.sax.SAXParseException: Element type “SystemProperty” must be followed by either attribute specifications, “>” or “/>”.

Cara nunca configurei o Jetty com ssl mas o erro não é esse?

<!-- Estava assim -->
<Set name="Keystore">  
   <SystemProperty name="jetty.home"  default="."/>/etc/demokeystore
</Set>

<!-- tente assim -->
<Set name="Keystore">  
   <SystemProperty name="jetty.home"  default=".">/etc/demokeystore</SystemProperty>
</Set>

Bom parece que foi um erro de copy/paste para o notepad, reescrevi na mão e pelo menos mudou o erro. Adicionei o arquivo org.mortbay.jetty.jar e agora aparece o erro: java.lang.SecurityException: sealing violation: can’t seal package org.mortbay.util: already loaded