github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/java-legacy/build.sbt (about)

     1  lazy val root = (project in file(".")).
     2    settings(
     3      organization := "io.lakefs",
     4      name := "api-client",
     5      version := "0.1.0-SNAPSHOT",
     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" % "4.9.1",
    14        "com.squareup.okhttp3" % "logging-interceptor" % "4.9.1",
    15        "com.google.code.gson" % "gson" % "2.8.6",
    16        "org.apache.commons" % "commons-lang3" % "3.10",
    17        "org.openapitools" % "jackson-databind-nullable" % "0.2.1",
    18        "org.threeten" % "threetenbp" % "1.4.3" % "compile",
    19        "io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
    20        "jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
    21        "com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
    22        "jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
    23        "junit" % "junit" % "4.13.1" % "test",
    24        "com.novocode" % "junit-interface" % "0.10" % "test"
    25      )
    26    )