-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (24 loc) · 769 Bytes
/
build.sbt
File metadata and controls
26 lines (24 loc) · 769 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
name := "rtm-root"
inThisBuild(
Seq(
organization := "com.github.tmtsoftware.rtm",
scalaVersion := "3.6.4",
version := "0.4.3",
resolvers += "jitpack" at "https://jitpack.io",
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-feature",
"-unchecked",
"-deprecation",
)
)
)
lazy val rtm = project.settings(
Settings.addAliases(),
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v"),
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19",
libraryDependencies += "net.aichler" % "jupiter-interface" % "0.11.1" % Provided,
libraryDependencies += "com.lihaoyi" %% "scalatags" % "0.13.1",
libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3"
)