forked from loafle/openapi-generator-original
* [kotlin] unify jvm envirement * [kotlin] rename retrofit2 to jvm-retrofit2 * [kotlin] update retrofit2 bat script * [kotlin] update docs * [kotlin] update docs * [kotlin] update pet projects
11 lines
453 B
Batchfile
11 lines
453 B
Batchfile
set executable=.\modules\openapi-generator-cli\target\openapi-generator-cli.jar
|
|
|
|
If Not Exist %executable% (
|
|
mvn clean package
|
|
)
|
|
|
|
REM set JAVA_OPTS=%JAVA_OPTS% -Xmx1024M -DloggerPath=conf/log4j.properties
|
|
set ags=generate --artifact-id "kotlin-petstore-retrofit2" -i modules\openapi-generator\src\test\resources\2_0\petstore.yaml -g kotlin --library jvm-retrofit2 -o samples\client\petstore\kotlin-retrofit2
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|