diff --git a/examples/https/src/main/resources/application.properties b/examples/https/src/main/resources/application.properties index f9c0837ff..894a44aeb 100644 --- a/examples/https/src/main/resources/application.properties +++ b/examples/https/src/main/resources/application.properties @@ -1,4 +1,5 @@ # HTTPS quarkus.http.ssl.certificate.key-store-file=META-INF/resources/server.keystore +quarkus.http.ssl.certificate.key-store-file-type=JKS quarkus.http.ssl.certificate.key-store-password=password quarkus.ssl.native=true diff --git a/examples/management/src/test/java/io/quarkus/qe/LocalTLSIT.java b/examples/management/src/test/java/io/quarkus/qe/LocalTLSIT.java index e0722230d..4112add93 100644 --- a/examples/management/src/test/java/io/quarkus/qe/LocalTLSIT.java +++ b/examples/management/src/test/java/io/quarkus/qe/LocalTLSIT.java @@ -18,6 +18,7 @@ public class LocalTLSIT { static final RestService service = new RestService() .withProperty("quarkus.management.port", "9003") .withProperty("quarkus.management.ssl.certificate.key-store-file", "META-INF/resources/server.keystore") + .withProperty("quarkus.management.ssl.certificate.key-store-file-type", "JKS") .withProperty("quarkus.management.ssl.certificate.key-store-password", "password"); @Test