mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 18:45:23 +00:00
21 lines
674 B
Batchfile
21 lines
674 B
Batchfile
setlocal
|
|
|
|
set executable=.\modules\openapi-generator-cli\target\openapi-generator-cli.jar
|
|
|
|
If Not Exist %executable% (
|
|
mvn clean package
|
|
)
|
|
|
|
set SPEC=modules\openapi-generator\src\test\resources\2_0\petstore-with-fake-endpoints-models-for-testing.yaml
|
|
set GENERATOR=go
|
|
set STUB_DIR=samples\client\petstore\go\go-petstore-withXml
|
|
|
|
echo Removing files and folders under %STUB_DIR%
|
|
del /F /S /Q %STUB_DIR%
|
|
|
|
REM set JAVA_OPTS=%JAVA_OPTS% -Xmx1024M -DloggerPath=conf/log4j.properties
|
|
set ags=generate -t modules\openapi-generator\src\main\resources\go -i %SPEC% -g %GENERATOR% -o %STUB_DIR% -DpackageName=petstore,withXml=true
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|
|
|
|
endlocal |