-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sbt
33 lines (29 loc) · 1.06 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
lazy val commonSettings = Seq(
organization := "com.github.mbuzdalov",
libraryDependencies += junitInterface,
autoScalaLibrary := false,
crossPaths := false,
fork := true
)
lazy val junitInterface = "com.github.sbt" % "junit-interface" % "0.13.3" % "test"
lazy val osHardwareInformation = "com.github.oshi" % "oshi-core" % "6.6.5"
lazy val root = project
.in(file("."))
.settings(commonSettings :_*)
.settings(name := "non-dominated-sorting",
version := "0.2.1")
.dependsOn(implementations, benchmarking)
.aggregate(implementations, benchmarking)
lazy val implementations = project
.in(file("implementations"))
.settings(commonSettings :_*)
.settings(name := "non-dominated-sorting-implementations",
version := "0.2.1")
lazy val benchmarking = project
.in(file("benchmarking"))
.settings(commonSettings :_*)
.settings(name := "non-dominated-sorting-benchmarking",
version := "0.2.1",
libraryDependencies += osHardwareInformation)
.dependsOn(implementations)
.enablePlugins(JmhPlugin)