-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
33 lines (26 loc) · 959 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
30
31
32
33
import _root_.io.github.nafg.mergify.dsl.*
inThisBuild(
List(
scalaVersion := "2.13.15",
scalacOptions += "-Xsource:3"
)
)
mergifyExtraConditions := Seq(
(Attr.Author :== "scala-steward") ||
(Attr.Author :== "slick-scala-steward[bot]") ||
(Attr.Author :== "renovate[bot]")
)
libraryDependencies ++= List(
"org.slf4j" % "slf4j-nop" % "2.0.16",
"com.h2database" % "h2" % "2.3.232"
)
scalacOptions += "-deprecation"
run / fork := true
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value
Compile / unmanagedClasspath ++= (Compile / unmanagedResources).value
libraryDependencies += "com.typesafe.slick" %% "slick" % "3.5.2"
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
ThisBuild / githubWorkflowPublishTargetBranches := Seq()
ThisBuild / githubWorkflowBuild := Seq(
WorkflowStep.Sbt(List("runAll"), name = Some(s"Run all main classes"))
)