From 0a2f8583bd6c3e96ef5a4faba0b205848d11c185 Mon Sep 17 00:00:00 2001 From: damien Date: Sat, 12 Oct 2024 22:37:22 +0200 Subject: [PATCH] #484 preserve the alphabetical order --- .../victools/jsonschema/plugin/maven/SchemaGeneratorMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonschema-maven-plugin/src/main/java/com/github/victools/jsonschema/plugin/maven/SchemaGeneratorMojo.java b/jsonschema-maven-plugin/src/main/java/com/github/victools/jsonschema/plugin/maven/SchemaGeneratorMojo.java index 2c5a4441..908baeb0 100644 --- a/jsonschema-maven-plugin/src/main/java/com/github/victools/jsonschema/plugin/maven/SchemaGeneratorMojo.java +++ b/jsonschema-maven-plugin/src/main/java/com/github/victools/jsonschema/plugin/maven/SchemaGeneratorMojo.java @@ -529,7 +529,7 @@ private void addStandardModule(GeneratorModule module, SchemaGeneratorConfigBuil break; default: throw new MojoExecutionException("Error: Module does not have a name in " - + "['Jackson', 'JakartaValidation', 'JavaxValidation', 'Swagger15', 'Swagger2', 'MicroProfileOpenApi3']" + + "['Jackson', 'JakartaValidation', 'JavaxValidation', 'MicroProfileOpenApi3', 'Swagger15', 'Swagger2']" + " or does not have a custom classname."); } }