mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-14 16:33:56 +00:00
* started impl * seems to work * generated docs * fix class name duplicates on case-insensitive filesystems * wip * added script to rebuild all projects * dropped bash slop * fixed directory structure * ok, now it makes sense * update sttp, serialize query params, fix enums serialization, fix not required files params * fix compile errors after sttp upgrade, fix missing enum import in operations, fix file response. change serialization from Map to Seq to avoid deleting duplicate keys * auth support * fix enums entries, multipart support(partially), header, path and cookie serialization support * support of option fields * add samples, update workflow * add new files * fix * remove tab * remove tab * update doc * update header * update readme --------- Co-authored-by: Łukasz Biały <lukasz.marcin.bialy@gmail.com> Co-authored-by: Kamil-Lontkowski <kamillont14@gmail.com>
19 lines
638 B
Scala
19 lines
638 B
Scala
version := "1.0.0"
|
|
name := "openapi-client"
|
|
organization := "org.openapitools"
|
|
|
|
scalaVersion := "3.3.4"
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.softwaremill.sttp.client4" %% "core" % "4.0.0-RC1",
|
|
"com.softwaremill.sttp.client4" %% "jsoniter" % "4.0.0-RC1",
|
|
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.31.1",
|
|
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.31.1" % "compile-internal",
|
|
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-circe" % "2.31.1"
|
|
)
|
|
|
|
scalacOptions := Seq(
|
|
"-unchecked",
|
|
"-deprecation",
|
|
"-feature"
|
|
) |