-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (31 loc) · 1.59 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
ThisBuild / tlBaseVersion := "0.3"
ThisBuild / crossScalaVersions := Seq("2.13.15", "3.6.0")
ThisBuild / tlCiReleaseBranches += "main"
ThisBuild / resolvers += "Gemini Repository".at(
"https://github.com/gemini-hlsw/maven-repo/raw/master/releases"
)
lazy val root = project.in(file(".")).aggregate(giapi).enablePlugins(NoPublishPlugin)
val catsVersion = "2.12.0"
lazy val giapi = project
.in(file("modules/giapi"))
.settings(
name := "giapi",
libraryDependencies ++=
Seq(
"org.typelevel" %%% "cats-core" % catsVersion,
"org.typelevel" %%% "cats-effect" % "3.5.5",
"co.fs2" %%% "fs2-core" % "3.11.0",
"org.typelevel" %%% "mouse" % "1.3.2",
"edu.gemini" %%% "lucuma-core" % (if (tlIsScala3.value) "0.105.6" else "0.47.0"),
"edu.gemini.aspen" % "giapi-status-service" % "0.6.7",
"edu.gemini.jms" % "jms-activemq-provider" % "1.6.7",
"edu.gemini.aspen.gmp" % "gmp-commands-jms-bridge" % "0.6.7",
"edu.gemini.aspen.gmp" % "gmp-status-gateway" % "0.3.7",
"org.typelevel" %%% "cats-laws" % catsVersion % Test,
"org.typelevel" %%% "discipline-munit" % "2.0.0" % Test,
"org.typelevel" %%% "munit-cats-effect" % "2.0.0" % Test,
"edu.gemini.aspen.gmp" % "gmp-statusdb" % "0.3.7" % Test,
"ch.qos.logback" % "logback-classic" % "1.5.12" % Test
),
Test / fork := true
)