mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 02:55:19 +00:00
727038a186
* added method summary under the method name * added batch file for html2 generation on windows * regenerated html2 example * changed the html2 windows batch to use yaml instead of json and regenerated sample * fixed encoding issues
11 lines
352 B
Batchfile
11 lines
352 B
Batchfile
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 html2 -o samples\html2
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|