From ce3546c1a74c21a23f685553f36541999311116a Mon Sep 17 00:00:00 2001 From: Michal Somora Date: Thu, 10 Aug 2023 17:06:51 +0200 Subject: [PATCH] switch default values --- .../security/src/main/resources/application.properties | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integration-tests/security/src/main/resources/application.properties b/integration-tests/security/src/main/resources/application.properties index f9f06e9a..61e7060a 100644 --- a/integration-tests/security/src/main/resources/application.properties +++ b/integration-tests/security/src/main/resources/application.properties @@ -2,14 +2,13 @@ org.acme.openapi.security.auth.basic_auth/username=john org.acme.openapi.security.auth.basic_auth/password=test customAuth.additionalApiTypeAnnotations=@org.eclipse.microprofile.rest.client.annotation.RegisterClientHeaders,@org.eclipse.microprofile.rest.client.annotation.RegisterProvider(io.quarkiverse.openapi.generator.it.security.auth.DummyApiKeyAuthenticationProvider.class) -quarkus.openapi-generator.codegen.enable-security-generation=false # since the file name has a space, we use the URI representation of this space here to not break the properties file # see the RFC3986 for more info https://datatracker.ietf.org/doc/html/rfc3986 quarkus.openapi-generator.codegen.spec.open_weather_yaml.base-package=org.acme.openapi.weather.v2 -quarkus.openapi-generator.codegen.spec.open_weather_yaml.enable-security-generation=true quarkus.openapi-generator.open_weather_yaml.auth.app_id.api-key=12345 +quarkus.openapi-generator.codegen.spec.open_weather_custom_security_yaml.enable-security-generation=false quarkus.openapi-generator.codegen.spec.open_weather_custom_security_yaml.base-package=org.acme.openapi.weather.customsecurity quarkus.openapi-generator.codegen.spec.open_weather_custom_security_yaml.additional-api-type-annotations=${customAuth.additionalApiTypeAnnotations} quarkus.openapi-generator.open_weather_custom_security_yaml.auth.app_id.api-key=dummyKey