-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (24 loc) · 978 Bytes
/
build.sbt
File metadata and controls
28 lines (24 loc) · 978 Bytes
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
name := "adventofcode2023"
organization := "nl.gn0s1s"
startYear := Some(2023)
developers := List(
Developer(
id = "philippus",
name = "Philippus Baalman",
email = "",
url = url("https://github.com/philippus")
)
)
scalaVersion := "3.7.4"
mainClass.withRank(KeyRanks.Invisible) := Some("adventofcode2024.day1.Day1")
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "1.2.1" % Test,
"org.scalameta" %% "munit-scalacheck" % "1.2.0" % Test,
"io.spray" %% "spray-json" % "1.3.6",
"nl.gn0s1s" %% "between" % "0.6.0",
"org.apache.pekko" %% "pekko-actor-typed" % "1.3.0",
"org.apache.pekko" %% "pekko-actor-testkit-typed" % "1.3.0" % Test,
"ch.qos.logback" % "logback-classic" % "1.5.22",
"com.github.vagmcs" %% "optimus" % "3.4.5",
"com.github.vagmcs" %% "optimus-solver-oj" % "3.4.5"
)