-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (19 loc) · 810 Bytes
/
build.sbt
File metadata and controls
23 lines (19 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name := "DepFuzz"
version := "1.0"
scalaVersion := "2.12.2"
libraryDependencies ++= Seq(
"org.scalameta" %% "scalameta" % "4.2.3",
"org.apache.spark" %% "spark-sql" % "2.4.8",
"org.roaringbitmap" % "RoaringBitmap" % "0.8.11",
"org.scoverage" %% "scalac-scoverage-plugin" % "1.4.1",
"org.scoverage" %% "scalac-scoverage-runtime" % "1.4.1",
"org.scala-lang" % "scala-compiler" % "2.12.2",
"org.scala-lang" % "scala-reflect" % "2.12.2",
// "org.apache.hadoop" % "hadoop-hdfs" % "2.4.0",
"com.code-intelligence" % "jazzer-api" % "0.11.0"
)
ThisBuild / assemblyMergeStrategy := {
case PathList("META-INF", "MANIFEST.MF") => MergeStrategy.discard
case PathList("META-INF", "services", "org.apache.hadoop.fs.FileSystem") => MergeStrategy.filterDistinctLines
case _ => MergeStrategy.first
}