mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 10:35:25 +00:00
a5349cfde5
* Filter deprecated generators from CLI list by default. * [gradle] Exclude deprecated generators from list by default, add "include" option to allow for customization of list task. * Update scripts to support the --include option of the list command * Update gradle/cli docs for generators listing with "include" option.
12 lines
292 B
Bash
Executable File
12 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT="$0"
|
|
echo "# START SCRIPT: ${SCRIPT}"
|
|
|
|
executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar"
|
|
|
|
for GENERATOR in $(java -jar ${executable} list --short --include all | sed -e 's/,/\'$'\n''/g')
|
|
do
|
|
./bin/utils/export_generator.sh ${GENERATOR}
|
|
done
|