-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
30 lines (24 loc) · 1 KB
/
build.sbt
File metadata and controls
30 lines (24 loc) · 1 KB
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
uniform.project("beeswax", "au.com.cba.omnia.beeswax")
uniform.docSettings("https://github.com/CommBank/beeswax")
uniform.ghsettings
updateOptions := updateOptions.value.withCachedResolution(true)
parallelExecution in Test := false
uniformDependencySettings
uniformThriftSettings
strictDependencySettings
val omnitoolVersion = "1.12.1-20160118033143-a5ca392"
val thermometerVersion = "1.3.0-20151122230202-55282c8"
val humbugVersion = "0.6.1-20151008040202-1f0ccb9"
libraryDependencies :=
depend.hadoopClasspath ++
depend.hadoop() ++
depend.testing() ++
depend.hive() ++
depend.parquet() ++
depend.omnia("omnitool-core", omnitoolVersion) ++
depend.omnia("thermometer-hive", thermometerVersion, "test") ++
Seq(
"org.specs2" %% "specs2-core" % depend.versions.specs,
"com.twitter" %% "scrooge-core" % depend.versions.scrooge,
"au.com.cba.omnia" %% "omnitool-core" % omnitoolVersion % "test" classifier "tests"
)