github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/java/libraries/rest-assured/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.21",
    13        "io.rest-assured" % "rest-assured" % "4.3.0",
    14        "io.rest-assured" % "scala-support" % "4.3.0",
    15        "com.google.code.findbugs" % "jsr305" % "3.0.2",
    16  {{#jackson}}
    17        "com.fasterxml.jackson.core" % "jackson-core" % "2.10.3",
    18        "com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.3",
    19        "com.fasterxml.jackson.core" % "jackson-databind" % "2.10.3",
    20        "org.openapitools" % "jackson-databind-nullable" % "0.2.1",
    21        {{#withXml}}
    22        "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.10.3",
    23        {{/withXml}}
    24        {{#joda}}
    25        "com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.10.3",
    26        {{/joda}}
    27        {{#java8}}
    28        "com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.10.3",
    29        {{/java8}}
    30        {{#threetenbp}}
    31        "com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.10.0",
    32        {{/threetenbp}}
    33  {{/jackson}}
    34  {{#gson}}
    35        "com.google.code.gson" % "gson" % "2.8.6",
    36        "io.gsonfire" % "gson-fire" % "1.8.4" % "compile",
    37  {{/gson}}
    38  {{#joda}}
    39        "joda-time" % "joda-time" % "2.10.5" % "compile",
    40  {{/joda}}
    41  {{#threetenbp}}
    42        "org.threeten" % "threetenbp" % "1.4.3" % "compile",
    43  {{/threetenbp}}
    44        "com.squareup.okio" % "okio" % "1.17.5" % "compile",
    45  {{#useBeanValidation}}
    46        "javax.validation" % "validation-api" % "2.0.1.Final" % "compile",
    47  {{/useBeanValidation}}
    48  {{#performBeanValidation}}
    49        "org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
    50  {{/performBeanValidation}}
    51        "junit" % "junit" % "4.13" % "test",
    52        "com.novocode" % "junit-interface" % "0.10" % "test"
    53      )
    54    )