forked from loafle/openapi-generator-original
* upgrade okhttp-gson and google-api-client to junit5 * add changes in StringUtilTest * use https instead of http to fix 301 (moved) error * revert petstore test server url to http://petstore.swagger.io and regenerate samples * synced gradle/sbt/pom, re-generated samples * revert removal of port 80 from test url * udpate google api client tests * update sha * update comment --------- Co-authored-by: Thorsten Hirsch <t.hirsch@web.de>
29 lines
1.3 KiB
Scala
29 lines
1.3 KiB
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "org.openapitools",
|
|
name := "echo-api-okhttp-gson",
|
|
version := "0.1.0",
|
|
scalaVersion := "2.11.4",
|
|
scalacOptions ++= Seq("-feature"),
|
|
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
|
publishArtifact in (Compile, packageDoc) := false,
|
|
resolvers += Resolver.mavenLocal,
|
|
libraryDependencies ++= Seq(
|
|
"io.swagger" % "swagger-annotations" % "1.6.5",
|
|
"com.squareup.okhttp3" % "okhttp" % "4.12.0",
|
|
"com.squareup.okhttp3" % "logging-interceptor" % "4.12.0",
|
|
"com.google.code.gson" % "gson" % "2.9.1",
|
|
"org.apache.commons" % "commons-lang3" % "3.12.0",
|
|
"javax.ws.rs" % "jsr311-api" % "1.1.1",
|
|
"javax.ws.rs" % "javax.ws.rs-api" % "2.1.1",
|
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.6",
|
|
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"org.junit.jupiter" % "junit-jupiter-api" % "5.10.2" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test",
|
|
"org.mockito" % "mockito-core" % "3.12.4" % "test"
|
|
)
|
|
)
|