-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
51 lines (49 loc) · 2.34 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
lazy val Benchmark: Configuration = config("bench") extend Test
/** This allows run ScalaMeter benchmarks in separate sbt configuration.
* It means, that when you want run your benchmarks you should type `bench:test` in sbt console.
*/
lazy val basic = Project(
"root",
file("."),
settings = Defaults.coreDefaultSettings ++ Seq(
name := "van Emde Boas Tree",
organization := "com.nachinius",
scalaVersion := "2.12.4",
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature", "-Xlint"),
description := "A van Emde Boas data strucuture that achieves O(lg lg n) predecessor and successor queries with O(n) space",
homepage := Some(url(s"https://github.com/$username/$repo")),
licenses += "Apache License 2.0" -> url(s"https://github.com/$username/$repo/blob/master/LICENSE"),
scmInfo := Some(ScmInfo(url(s"https://github.com/$username/$repo"), s"git@github.com:$username/$repo.git")),
apiURL := Some(url(s"https://$username.github.io/$repo/latest/api/")),
releaseCrossBuild := true,
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
developers := List(
Developer(id = username, name = "Ignacio `nachinius` Peixoto", email = "ignacio.peixoto@gmail.com", url = new URL(s"http://github.com/${username}"))
),
publishMavenStyle := true,
publishArtifact in Test := true,
publishTo := Some(if (isSnapshot.value) Opts.resolver.sonatypeSnapshots else Opts.resolver.sonatypeStaging),
libraryDependencies ++= mainLibraryDependencies,
libraryDependencies ++= Seq(
"com.storm-enroute" %% "scalameter" % "0.8.2" % "bench"
),
scalaVersion := "2.12.4",
resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases"
),
testFrameworks += new TestFramework("org.scalameter.ScalaMeterFramework"),
parallelExecution in Benchmark := false,
logBuffered := false
)
) configs Benchmark settings (
inConfig(Benchmark)(Defaults.testSettings): _*
)
val username = "nachinius"
val repo = "VanEmdeBoasInScala"
val scalaTestVersion = "3.0.4"
val scalaCheckVersion = "1.13.4"
val mainLibraryDependencies = Seq(
"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
"org.scalacheck" %% "scalacheck" % scalaCheckVersion % "test"
)