-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
31 lines (27 loc) · 929 Bytes
/
build.sbt
File metadata and controls
31 lines (27 loc) · 929 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
29
30
31
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.3.6"
ThisBuild / scalacOptions ++= Seq(
"-explain",
"-deprecation",
"-feature"
)
ThisBuild / assemblyMergeStrategy := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case "application.conf" => MergeStrategy.concat
case "reference.conf" => MergeStrategy.concat
case x => MergeStrategy.first
}
// ===== DEPENDENCY VERSIONS =====
lazy val lsp4jVersion = "0.24.0"
lazy val logbackVersion = "1.5.18"
// ===== PROJECT DEFINITION =====
lazy val root = (project in file("."))
.settings(
name := "logo_lsp",
libraryDependencies ++= Seq(
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % lsp4jVersion,
"ch.qos.logback" % "logback-classic" % logbackVersion % Runtime
),
assembly / mainClass := Some("main"),
assembly / assemblyJarName := "logo_lsp.jar"
)