github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/java/libraries/okhttp-gson/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        "io.swagger" % "swagger-annotations" % "1.5.24",
    13        "com.squareup.okhttp3" % "okhttp" % "3.14.7",
    14        "com.squareup.okhttp3" % "logging-interceptor" % "3.14.7",
    15        "com.google.code.gson" % "gson" % "2.8.6",
    16        "org.apache.commons" % "commons-lang3" % "3.10",
    17        {{#hasOAuthMethods}}
    18        "org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
    19        {{/hasOAuthMethods}}
    20        {{#joda}}
    21        "joda-time" % "joda-time" % "2.9.9" % "compile",
    22        {{/joda}}
    23        {{#threetenbp}}
    24        "org.threeten" % "threetenbp" % "1.4.3" % "compile",
    25        {{/threetenbp}}
    26        "io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
    27        "javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
    28        "com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
    29        "junit" % "junit" % "4.13" % "test",
    30        "com.novocode" % "junit-interface" % "0.10" % "test"
    31      )
    32    )