-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
39 lines (29 loc) · 917 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name := "course8project"
version := "0.1"
scalaVersion := "2.12.12"
val hadoopVersion = "2.7.7"
val jdbcVersion = "1.1.0-cdh5.16.2"
val circeVersion = "0.14.1"
val hadoopDeps = Seq(
"org.apache.hadoop" % "hadoop-common" % hadoopVersion,
"org.apache.hadoop" % "hadoop-hdfs" % hadoopVersion
)
val hiveDeps = Seq(
"org.apache.hive" % "hive-jdbc" % jdbcVersion
)
val amazonS3 = Seq(
"com.amazonaws" % "aws-java-sdk" % "1.0.002"
)
val athena = Seq(
"software.amazon.awssdk" % "athena" % "2.15.79"
)
val simbaAthena = Seq(
"com.syncron.amazonaws" % "simba-athena-jdbc-driver" % "2.0.2"
)
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies ++=hadoopDeps++ hiveDeps++ amazonS3++ athena++ simbaAthena
resolvers += "Cloudera" at "https://repository.cloudera.com/artifactory/cloudera-repos/"