github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/java/libraries/google-api-client/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.22",
    13        "com.google.api-client" % "google-api-client" % "1.23.0",
    14        "org.glassfish.jersey.core" % "jersey-common" % "2.25.1",
    15        "com.fasterxml.jackson.core" % "jackson-core" % "2.10.1" % "compile",
    16        "com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.1" % "compile",
    17        "com.fasterxml.jackson.core" % "jackson-databind" % "2.10.1" % "compile",
    18        {{#withXml}}
    19        "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.9.10" % "compile",
    20        {{/withXml}}
    21        {{#joda}}
    22        "com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.9.10" % "compile",
    23        {{/joda}}
    24        {{#java8}}
    25        "com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
    26        {{/java8}}
    27        {{#threetenbp}}
    28        "com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
    29        {{/threetenbp}}
    30        "junit" % "junit" % "4.13" % "test",
    31        "com.novocode" % "junit-interface" % "0.10" % "test"
    32      )
    33    )