-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (28 loc) · 823 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
inThisBuild(List(
organization := "com.github.mrdimosthenis",
homepage := Some(url("https://github.com/mrdimosthenis/glicko2")),
licenses := List("MIT" -> url("https://rem.mit-license.org/")),
developers := List(
Developer(
"mrdimosthenis",
"Dimos Michailidis",
url("https://github.com/mrdimosthenis")
)
)
))
lazy val root = crossProject(JSPlatform, JVMPlatform)
.in(file("."))
.settings(
scalaVersion := "3.1.1",
name := "glicko2",
testFrameworks += new TestFramework("minitest.runner.Framework"),
libraryDependencies ++= Seq(
"io.monix" %%% "minitest" % "2.9.6" % "test",
"org.scalacheck" %%% "scalacheck" % "1.15.4" % "test"
)
)
.jvmSettings()
.jsSettings(
scalaJSUseMainModuleInitializer := false
)