mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 03:18:53 +00:00
fa73e56c17
Added shell scripts, batch files to generate Eiffel Petstore samples. Added Setup CI (travis, shippable, etc) to cover the Eiffel Petstore samples. Refactored part of the code into an Abstract Eiffel base class, which can be later used in Eiffel server stub generators. Added Eiffel Style guide to the contribution guidelines so that Eiffel contributors know what to follow in terms of code style Fixed code generator issues. Updated mustaches templates.
11 lines
370 B
Batchfile
11 lines
370 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 eiffel -o samples\client\petstore\eiffel
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|