I\'m using Jetty\'s plugin for Maven, version 7.0.0.pre5, but I have issues configuring it to have a SSL Connector. Whenever I start the application, it fails stating that t
Not sure this is normal but the jetty-maven-plugin doesn't have jetty-ssl as dependency in its pom. So please update your pom like this:
org.mortbay.jetty
jetty-maven-plugin
7.0.0.pre5
8080
8443
src/test/resources/server.keystore
123456
123456
org.mortbay.jetty
jetty-ssl
7.0.0.pre5
And the plugin will succeed to load org.mortbay.jetty.ssl.SslSelectChannelConnector.