-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·36 lines (21 loc) · 890 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
name := "CassandraBenchmark"
version := "1.0"
organization := "pmarques.eu"
version := "1.0.0"
scalaVersion := "2.11.4"
scalacOptions ++= Seq("-deprecation", "-feature")
//---------------------------------------------------------------------------------------
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.1" % "test"
libraryDependencies += "junit" % "junit" % "4.10" % "test"
libraryDependencies += "com.datastax.cassandra" % "cassandra-driver-core" % "2.1.2"
libraryDependencies += "commons-cli" % "commons-cli" % "1.2"
//---------------------------------------------------------------------------------------
// assemblySettings
//
mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) =>
{
case PathList("javax", "servlet", xs @ _*) => MergeStrategy.first
case x => old(x)
}
}
jarName in assembly := "CassandraBenchmark.jar"