github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/java/libraries/retrofit/build.sbt.mustache (about)

     1  lazy val root = (project in file(".")).
     2    settings(
     3      organization := "{{groupId}}",
     4      name := "{{artifactId}}",
     5      version := "{{artifactVersion}}",
     6      scalaVersion := "2.11.4",
     7      scalacOptions ++= Seq("-feature"),
     8      javacOptions in compile ++= Seq("-Xlint:deprecation"),
     9      publishArtifact in (Compile, packageDoc) := false,
    10      resolvers += Resolver.mavenLocal,
    11      libraryDependencies ++= Seq(
    12        "com.squareup.okhttp" % "okhttp" % "2.7.5" % "compile",
    13        "com.squareup.retrofit" % "retrofit" % "1.9.0" % "compile",
    14        "io.swagger" % "swagger-annotations" % "1.5.21" % "compile",
    15        "org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
    16        "joda-time" % "joda-time" % "2.9.3" % "compile",
    17        {{#threetenbp}}
    18        "org.threeten" % "threetenbp" % "1.4.0" % "compile",
    19        {{/threetenbp}}
    20        "junit" % "junit" % "4.13" % "test",
    21        "com.novocode" % "junit-interface" % "0.10" % "test"
    22      )
    23    )