github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/test/spark/s3a-multipart/build.sbt (about) 1 val baseName = "multipart" 2 3 val projectVersion = "0.1.0" 4 5 lazy val p = (project in file(".")) 6 .settings( 7 // Use an older JDK to be Spark compatible 8 javacOptions ++= Seq("-source", "1.8", "-target", "1.8"), 9 scalacOptions += "-target:jvm-1.8", 10 scalaVersion := "2.12.12", 11 libraryDependencies ++= Seq( 12 "org.apache.hadoop" % "hadoop-aws" % "2.7.7", 13 "org.apache.hadoop" % "hadoop-common" % "2.7.7", 14 "software.amazon.awssdk" % "s3" % "2.15.15", 15 ), 16 ) 17 18 ThisBuild / organization := "io.lakefs" 19 ThisBuild / organizationName := "Treeverse Labs" 20 ThisBuild / organizationHomepage := Some(url("http://lakefs.io")) 21 ThisBuild / description := "S3A multipart upload test app for checking lakeFS" 22 ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt")) 23 ThisBuild / homepage := Some(url("https://github.com/treeverse/lakeFS"))