forked from loafle/openapi-generator-original
* Update DefaultCodeGen to allow additional primitive types If a string field is specified with a format which is also defined using --typeMappings, it will be treated as a primitive type * Fixed typo in android-petstore-httpclient.bat
11 lines
410 B
Batchfile
Executable File
11 lines
410 B
Batchfile
Executable File
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 -i modules\openapi-generator\src\test\resources\2_0\petstore.yaml -g android -o samples\client\petstore\android\httpclient -Dlibrary=httpclient
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|