github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/java/libraries/feign/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" % "compile",
    13        "io.github.openfeign" % "feign-core" % "{{#useFeign10}}11.0{{/useFeign10}}{{^useFeign10}}9.7.0{{/useFeign10}}" % "compile",
    14        "io.github.openfeign" % "feign-jackson" % "{{#useFeign10}}11.0{{/useFeign10}}{{^useFeign10}}9.7.0{{/useFeign10}}" % "compile",
    15        "io.github.openfeign" % "feign-slf4j" % "{{#useFeign10}}11.0{{/useFeign10}}{{^useFeign10}}9.7.0{{/useFeign10}}" % "compile",
    16        "io.github.openfeign.form" % "feign-form" % "{{#useFeign10}}3.8.0{{/useFeign10}}{{^useFeign10}}2.1.0{{/useFeign10}}" % "compile",
    17        "com.fasterxml.jackson.core" % "jackson-core" % "2.10.3" % "compile",
    18        "com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.3" % "compile",
    19        "com.fasterxml.jackson.core" % "jackson-databind" % "2.10.3" % "compile",
    20        "com.fasterxml.jackson.datatype" % "jackson-datatype-{{^java8}}joda{{/java8}}{{#java8}}jsr310{{/java8}}" % "2.9.10" % "compile",
    21        "com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
    22        "org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
    23        "com.brsanthu" % "migbase64" % "2.2" % "compile",
    24        "junit" % "junit" % "4.13" % "test",
    25        "com.novocode" % "junit-interface" % "0.10" % "test"
    26      )
    27    )