mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 02:55:19 +00:00
54d7e8c488
* [CLI] Initial implementation for batch generation Allows for generating multiple outputs via config. Just specify multiple config files on command line. Intent for this is to reduce CI times to generate outputs as well as to reduce time for users to run ensure-up-to-date to meet PR standards. Example command: openapi-generator batch --includes-base-dir `pwd` --fail-fast -- bin/ci/* --- As part of this implementation, the batch command support a customized JSON key, `!include`. If this key's value refers to an existing file, that file's contents are "unwrapped" into the config during deserialization. This allows us to easily point to the same configs used by our sample scripts without modifying the CLI generate task's switches or assumptions. * Allow for path-relative outputs * Add batch JSON objects * Include INFO log about threads used and includes/root * Ensure GlobalSettings.reset() * Improved thread-safety of ModelUtils
27 lines
886 B
Bash
Executable File
27 lines
886 B
Bash
Executable File
#!/bin/sh
|
|
# update java petstore clients for all supported http libraries
|
|
|
|
./bin/java-petstore-feign-10x.sh
|
|
./bin/java-petstore-feign.sh
|
|
./bin/java-petstore-google-api-client.sh
|
|
./bin/java-petstore-jersey1.sh
|
|
./bin/java-petstore-jersey2-java6.sh
|
|
./bin/java-petstore-jersey2.sh
|
|
./bin/java-petstore-native.sh
|
|
./bin/java-petstore-okhttp-gson-parcelable.sh
|
|
./bin/java-petstore-okhttp-gson.sh
|
|
./bin/java-petstore-rest-assured.sh
|
|
./bin/java-petstore-resteasy.sh
|
|
./bin/java-petstore-resttemplate-withxml.sh
|
|
./bin/java-petstore-resttemplate.sh
|
|
./bin/java-petstore-retrofit.sh
|
|
./bin/java-petstore-retrofit2-play24.sh
|
|
./bin/java-petstore-retrofit2-play25.sh
|
|
./bin/java-petstore-retrofit2-play26.sh
|
|
./bin/java-petstore-retrofit2.sh
|
|
./bin/java-petstore-retrofit2rx.sh
|
|
./bin/java-petstore-retrofit2rx2.sh
|
|
./bin/java-petstore-vertx.sh
|
|
./bin/java-petstore-webclient.sh
|
|
./bin/java8-petstore-jersey2.sh
|