mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 10:58:55 +00:00
a4c0975aa4
* add r client codegen * update r api, model templates * various fix * rename Json to JSON * more enhancements * fix json handling * add file upload support, var name to handle hyphen * use httr::upload_file
11 lines
360 B
Batchfile
Executable File
11 lines
360 B
Batchfile
Executable File
set executable=.\modules\swagger-codegen-cli\target\swagger-codegen-cli.jar
|
|
|
|
If Not Exist %executable% (
|
|
mvn clean package
|
|
)
|
|
|
|
REM set JAVA_OPTS=%JAVA_OPTS% -Xmx1024M -DloggerPath=conf/log4j.properties
|
|
set ags=generate -i modules\swagger-codegen\src\test\resources\2_0\petstore.yaml -l r -o samples\client\petstore\r
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|