Initial Commit
This commit is contained in:
commit
d190beb7bf
13 changed files with 382 additions and 0 deletions
22
build.sbt
Normal file
22
build.sbt
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
val scala3Version = "3.4.1"
|
||||
|
||||
lazy val root = project
|
||||
.in(file("."))
|
||||
.settings(
|
||||
name := "Unit-CA5 Control Program",
|
||||
version := "0.1.0-SNAPSHOT",
|
||||
|
||||
scalaVersion := scala3Version,
|
||||
|
||||
libraryDependencies ++= Seq(
|
||||
"org.scalameta" %% "munit" % "0.7.29" % Test, // Base
|
||||
"org.scala-lang" %% "toolkit" % "0.1.7",
|
||||
|
||||
"ch.qos.logback" % "logback-classic" % "1.5.6", // Logging
|
||||
|
||||
"com.typesafe.slick" %% "slick" % "3.5.1", // Database
|
||||
"com.typesafe" % "config" % "1.4.3",
|
||||
"com.typesafe.slick" %% "slick-hikaricp" % "3.5.1",
|
||||
"org.postgresql" % "postgresql" % "42.2.5"
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue