Pārlūkot izejas kodu

Disable SSL connector in jetty-maven-plugin

Since there is no 'keystore' file in the resources of this app "mvn jetty:run" cannot be used to start it.
Martin Tzvetanov Grigorov 11 gadi atpakaļ
vecāks
revīzija
05fcd0e336
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      wicket/pom.xml

+ 2 - 2
wicket/pom.xml

@@ -145,13 +145,13 @@
 							<port>8080</port>
 							<maxIdleTime>3600000</maxIdleTime>
 						</connector>
-						<connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
+						<!--connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
 							<port>8443</port>
 							<maxIdleTime>3600000</maxIdleTime>
 							<keystore>${project.build.directory}/test-classes/keystore</keystore>
 							<password>wicket</password>
 							<keyPassword>wicket</keyPassword>
-						</connector>
+						</connector-->
 					</connectors>
 				</configuration>
 			</plugin>