mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-28 20:40:52 +00:00
* merge with master * remove zoo specific artifact names * fix duplicate doublequote * #3904 add samples for retrofit2 * #3904 clean json field retrieval * #3904 allow non-abstract parent class
23 lines
1005 B
Scala
23 lines
1005 B
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "io.swagger",
|
|
name := "swagger-petstore-retrofit2",
|
|
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.squareup.retrofit2" % "converter-gson" % "2.3.0" % "compile",
|
|
"io.swagger" % "swagger-annotations" % "1.5.15" % "compile",
|
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
|
|
"org.threeten" % "threetenbp" % "1.3.5" % "compile",
|
|
"io.gsonfire" % "gson-fire" % "1.8.0" % "compile",
|
|
"junit" % "junit" % "4.12" % "test",
|
|
"com.novocode" % "junit-interface" % "0.11" % "test"
|
|
)
|
|
)
|