Skip to content

Commit 65b74ea

Browse files
authored
Fixed issue that prevented the app from starting when "base-package" property was not set (#221) (#222)
Signed-off-by: Helber Belmiro <[email protected]> Signed-off-by: Helber Belmiro <[email protected]>
1 parent c3197d5 commit 65b74ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployment/src/main/java/io/quarkiverse/openapi/generator/deployment/SpecItemConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class SpecItemConfig {
1919
* Base package for where the generated code for the given OpenAPI specification will be added.
2020
*/
2121
@ConfigItem(name = "base-package")
22-
public String basePackage;
22+
public Optional<String> basePackage;
2323

2424
/**
2525
* Whether to skip the generation of models for form parameters

0 commit comments

Comments
 (0)