-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
43 lines (37 loc) · 1.13 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
inThisBuild(List(
organization := "com.github.mrdimosthenis",
homepage := Some(url("https://github.com/mrdimosthenis/Synapses")),
licenses := List("MIT" -> url("https://rem.mit-license.org/")),
developers := List(
Developer(
"mrdimosthenis",
"Dimos Michailidis",
url("https://github.com/mrdimosthenis")
)
)
))
val scala3Version = "3.3.1"
val circeVersion = "0.14.1"
lazy val root = project
.in(file("."))
.settings(
name := "synapses",
scalaVersion := scala3Version,
libraryDependencies ++= Seq(
"org.scala-lang.modules" % "scala-parallel-collections_3" % "1.0.3",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"com.novocode" % "junit-interface" % "0.11" % "test",
"com.github.tototoshi" % "scala-csv_3" % "1.3.8" % "test"
)
)
lazy val docs = project
.in(file("synapses-docs"))
.settings(
scalaVersion := scala3Version,
mdocOut := (LocalRootProject / baseDirectory).value,
)
.dependsOn(root)
.enablePlugins(MdocPlugin)