diff --git a/bin/utils/export_docs_generators.sh b/bin/utils/export_docs_generators.sh index 00683182493..80ab491f9aa 100755 --- a/bin/utils/export_docs_generators.sh +++ b/bin/utils/export_docs_generators.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash SCRIPT="$0" echo "# START SCRIPT: $SCRIPT" @@ -8,4 +8,4 @@ executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar" for GENERATOR in $(java -jar $executable list --short | sed -e 's/,/\'$'\n''/g') do ./bin/utils/export_generator.sh $GENERATOR -done \ No newline at end of file +done diff --git a/bin/utils/export_generator.sh b/bin/utils/export_generator.sh index d23912ae669..d9a98f0df54 100755 --- a/bin/utils/export_generator.sh +++ b/bin/utils/export_generator.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash SCRIPT="$0" echo "# START SCRIPT: $SCRIPT" @@ -12,6 +12,6 @@ fi executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar" -java -jar $executable config-help -g $NAME | sed -e 's/CONFIG OPTIONS/CONFIG OPTIONS for \'$NAME'\'$'\n''/g' > docs/generators/$NAME.md +java -jar $executable config-help -g $NAME | sed -e 's/CONFIG OPTIONS/CONFIG OPTIONS for '$NAME'\'$'\n''/g' > docs/generators/$NAME.md -echo "Back to the [generators list](README.md)" >> docs/generators/$NAME.md \ No newline at end of file +echo "Back to the [generators list](README.md)" >> docs/generators/$NAME.md diff --git a/docs/generators/groovy.md b/docs/generators/groovy.md index f0e10ee89ad..9a6ff34c6cf 100644 --- a/docs/generators/groovy.md +++ b/docs/generators/groovy.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for groovy booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + configPackage configuration package for generated code diff --git a/docs/generators/java-inflector.md b/docs/generators/java-inflector.md index ee6caf04eb3..f142ee247bd 100644 --- a/docs/generators/java-inflector.md +++ b/docs/generators/java-inflector.md @@ -104,4 +104,13 @@ CONFIG OPTIONS for java-inflector booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + Back to the [generators list](README.md) diff --git a/docs/generators/java-msf4j.md b/docs/generators/java-msf4j.md index ae07769bc0a..b2817e0b7c1 100644 --- a/docs/generators/java-msf4j.md +++ b/docs/generators/java-msf4j.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for java-msf4j booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code diff --git a/docs/generators/java-pkmst.md b/docs/generators/java-pkmst.md index 0dd350488ca..1cab3be93ba 100644 --- a/docs/generators/java-pkmst.md +++ b/docs/generators/java-pkmst.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for java-pkmst booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + groupId groupId in generated pom.xml diff --git a/docs/generators/java-play-framework.md b/docs/generators/java-play-framework.md index b03f80be645..801c965df75 100644 --- a/docs/generators/java-play-framework.md +++ b/docs/generators/java-play-framework.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for java-play-framework booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + title server title name or client service name diff --git a/docs/generators/java-undertow-server.md b/docs/generators/java-undertow-server.md index c0af154ee89..facaf3aa831 100644 --- a/docs/generators/java-undertow-server.md +++ b/docs/generators/java-undertow-server.md @@ -104,4 +104,13 @@ CONFIG OPTIONS for java-undertow-server booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + Back to the [generators list](README.md) diff --git a/docs/generators/java-vertx.md b/docs/generators/java-vertx.md index b1a5ca63826..7a2099f101c 100644 --- a/docs/generators/java-vertx.md +++ b/docs/generators/java-vertx.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for java-vertx booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + rxInterface When specified, API interfaces are generated with RX and methods return Single<> and Comparable. (Default: false) diff --git a/docs/generators/jaxrs-cxf-cdi.md b/docs/generators/jaxrs-cxf-cdi.md index 20e9a3b3e1a..6f29fc10868 100644 --- a/docs/generators/jaxrs-cxf-cdi.md +++ b/docs/generators/jaxrs-cxf-cdi.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-cxf-cdi booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code diff --git a/docs/generators/jaxrs-cxf-client.md b/docs/generators/jaxrs-cxf-client.md index 79677413ac1..df9f1d2b8af 100644 --- a/docs/generators/jaxrs-cxf-client.md +++ b/docs/generators/jaxrs-cxf-client.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-cxf-client booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + useBeanValidation Use BeanValidation API annotations (Default: false) diff --git a/docs/generators/jaxrs-cxf.md b/docs/generators/jaxrs-cxf.md index 580e9f7b01d..4fce66ff8dc 100644 --- a/docs/generators/jaxrs-cxf.md +++ b/docs/generators/jaxrs-cxf.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-cxf booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code diff --git a/docs/generators/jaxrs-jersey.md b/docs/generators/jaxrs-jersey.md index d945cbf9111..b4b0d29c76f 100644 --- a/docs/generators/jaxrs-jersey.md +++ b/docs/generators/jaxrs-jersey.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-jersey booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code diff --git a/docs/generators/jaxrs-resteasy-eap.md b/docs/generators/jaxrs-resteasy-eap.md index 58069dee7f5..d031162a1fc 100644 --- a/docs/generators/jaxrs-resteasy-eap.md +++ b/docs/generators/jaxrs-resteasy-eap.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-resteasy-eap booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code diff --git a/docs/generators/jaxrs-resteasy.md b/docs/generators/jaxrs-resteasy.md index d0ce94efa1a..56db591b479 100644 --- a/docs/generators/jaxrs-resteasy.md +++ b/docs/generators/jaxrs-resteasy.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-resteasy booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code diff --git a/docs/generators/jaxrs-spec.md b/docs/generators/jaxrs-spec.md index ac8041b97ec..1c9a9cf12d3 100644 --- a/docs/generators/jaxrs-spec.md +++ b/docs/generators/jaxrs-spec.md @@ -104,6 +104,15 @@ CONFIG OPTIONS for jaxrs-spec booleanGetterPrefix Set booleanGetterPrefix (default value 'get') + parentGroupId + parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentArtifactId + parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + + parentVersion + parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect + implFolder folder for generated implementation code