-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
55 lines (47 loc) · 1.37 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name := "ca_art"
version := "0.3"
scalaVersion := "2.13.7"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-unchecked",
"-encoding",
"utf8",
"-opt:unreachable-code",
"-opt:simplify-jumps",
"-opt:compact-locals",
"-opt:copy-propagation",
"-opt:redundant-casts",
"-opt:box-unbox",
"-opt:nullness-tracking",
"-opt:closure-invocations",
"-opt:allow-skip-core-module-init",
"-opt:assume-modules-non-null",
"-opt:allow-skip-class-loading",
"-opt:inline"
)
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.3",
"com.wire" %% "wire-signals" % "1.0.0",
"ch.qos.logback" % "logback-classic" % "1.2.6",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.4",
"com.github.almasb" % "fxgl"% "11.17",
//Test dependencies
"org.scalameta" %% "munit" % "0.7.26" % "test"
)
lazy val nativeImage =
project
.in(file("."))
.enablePlugins(NativeImagePlugin)
.settings(
Compile / mainClass := Some("caart.Main"),
nativeImageInstalled := true
)
testFrameworks += new TestFramework("munit.Framework")
Test / parallelExecution := true
fork := true
Test / fork := true
developers := List(
Developer("makingthematrix", "Maciej Gorywoda", "[email protected]", url("https://github.com/makingthematrix"))
)
licenses := Seq("GPL 3.0" -> url("https://www.gnu.org/licenses/gpl-3.0.en.html"))