Maven's jetty plugin SSL configuration issue

后端 未结 4 1205
鱼传尺愫
鱼传尺愫 2020-12-09 22:44

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

4条回答
  •  醉酒成梦
    2020-12-09 23:31

    For the current version of jetty-maven-plugin, 8.0.0.M2, the class names have been moved into org.eclipse.*, and no additional dependencies are needed.

    
        org.mortbay.jetty
        jetty-maven-plugin
        8.0.0.M2
        
            
                /
            
            
                
                    8080
                
                
                    8443
                    src/test/resources/server.keystore
                    123456
                    123456
                
            
        
    
    

    See: http://wiki.eclipse.org/Jetty/Starting/Porting_to_Jetty_7

提交回复
热议问题