Enable HTTP2 with maven-jetty-plugin -
i've enabled http/2 connector on ssl jetty. when try connect browser 'err_ssl_protocol_error' error. if switch http/1.1 connector works fine. here jetty configuration files: <!-- ============================================================= --> <!-- configure jetty server instance id "server" --> <!-- adding http connector. --> <!-- configuration must used in conjunction jetty.xml --> <!-- ============================================================= --> <configure id="server" class="org.eclipse.jetty.server.server"> <new id="httpconfig" class="org.eclipse.jetty.server.httpconfiguration"> <set name="securescheme">https</set> <set name="secureport"><property name="jetty.secure.port" default="8443" /></set> <set name="outputbuffer...