mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 10:35:25 +00:00
11 lines
611 B
Batchfile
11 lines
611 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 "asciidoc-petstore-documentation" -t modules\openapi-generator\src\main\resources\asciidoc-documentation --additional-properties=specDir=modules\openapi-generator\src\main\resources\asciidoc-documentation,snippetDir=. -i modules\openapi-generator\src\test\resources\2_0\petstore.yaml -g asciidoc -o samples\documentation\asciidoc
|
||
|
|
||
|
java %JAVA_OPTS% -jar %executable% %ags%
|