mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-18 07:30:51 +00:00
* update databind to newer version * update jackson version * update dep * revert jersey1
28 lines
1.4 KiB
Scala
28 lines
1.4 KiB
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "org.openapitools",
|
|
name := "petstore-java-client-retrofit2-play26",
|
|
version := "1.0.0",
|
|
scalaVersion := "2.11.4",
|
|
scalacOptions ++= Seq("-feature"),
|
|
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
|
publishArtifact in (Compile, packageDoc) := false,
|
|
resolvers += Resolver.mavenLocal,
|
|
libraryDependencies ++= Seq(
|
|
"com.squareup.retrofit2" % "retrofit" % "2.3.0" % "compile",
|
|
"com.squareup.retrofit2" % "converter-scalars" % "2.3.0" % "compile",
|
|
"com.typesafe.play" % "play-ahc-ws_2.12" % "2.6.7" % "compile",
|
|
"jakarta.validation" % "jakarta.validation-api" % "2.0.2" % "compile",
|
|
"com.squareup.retrofit2" % "converter-jackson" % "2.3.0" % "compile",
|
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.4" % "compile",
|
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.4" % "compile",
|
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.4.2" % "compile",
|
|
"io.swagger" % "swagger-annotations" % "1.5.21" % "compile",
|
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
|
|
"io.gsonfire" % "gson-fire" % "1.8.0" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"junit" % "junit" % "4.13.2" % "test",
|
|
"com.novocode" % "junit-interface" % "0.11" % "test"
|
|
)
|
|
)
|