mirror of
https://github.com/Paillat-dev/hello-world-scala.git
synced 2026-01-02 01:06:21 +00:00
First commit
This commit is contained in:
15
build.sbt
Normal file
15
build.sbt
Normal file
@@ -0,0 +1,15 @@
|
||||
val scala3Version = "3.7.1"
|
||||
|
||||
lazy val root = project
|
||||
.in(file("."))
|
||||
.settings(
|
||||
name := "hello-world-scala",
|
||||
version := "0.1.0-SNAPSHOT",
|
||||
scalaVersion := scala3Version,
|
||||
semanticdbEnabled := true,
|
||||
scalacOptions += "-Wunused:all",
|
||||
javaOptions += "-Dfile.encoding=UTF-8",
|
||||
javaOptions += "-Dstdout.encoding=UTF-8",
|
||||
javaOptions += "-Dstderr.encoding=UTF-8",
|
||||
libraryDependencies += "com.lihaoyi" %% "fansi" % "0.5.0"
|
||||
)
|
||||
Reference in New Issue
Block a user