Skip to content

Commit

Permalink
[Server] Change stability to Beta (OpenAPITools#52)
Browse files Browse the repository at this point in the history
Signed-off-by: tvallin <[email protected]>
  • Loading branch information
tvallin authored Sep 1, 2022
1 parent e03bd6c commit 369fcc9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
import org.openapitools.codegen.CodegenProperty;
import org.openapitools.codegen.CodegenType;
import org.openapitools.codegen.SupportingFile;
import org.openapitools.codegen.meta.GeneratorMetadata;
import org.openapitools.codegen.meta.Stability;
import org.openapitools.codegen.meta.features.DocumentationFeature;
import org.openapitools.codegen.model.ModelMap;
import org.openapitools.codegen.model.OperationMap;
Expand All @@ -56,6 +58,10 @@ public class JavaHelidonServerCodegen extends JavaHelidonCommonCodegen {

public JavaHelidonServerCodegen() {
super();
// beta for now
generatorMetadata = GeneratorMetadata.newBuilder(generatorMetadata)
.stability(Stability.BETA)
.build();

modifyFeatureSet(features -> features.includeDocumentationFeatures(DocumentationFeature.Readme));

Expand Down

0 comments on commit 369fcc9

Please sign in to comment.