mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 02:25:20 +00:00
e23b2f6fcc
* Rename scripts akka-scala-petstore.sh -> scala-akka-petstore.sh * Rename sample folder: akka-scala -> scala-akka * Rename templateDir: akka-scala -> scala-akka-client * Rename scripts: scala-petstore.sh -> scala-httpclient-petstore.sh * Rename sample folder: scala -> scala-httpclient * Rename templateDir: scala -> scala-httpclient * update circle pom.xml for new scala path * remove duplicated scala test
11 lines
428 B
Batchfile
Executable File
11 lines
428 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 --artifact-id "scala-akka-petstore-client" -i modules\openapi-generator\src\test\resources\2_0\petstore.yaml -g scala-akka -o samples\client\petstore\scala-akka
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|