-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (28 loc) · 954 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
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := "0.2-SNAPSHOT"
ThisBuild / organization := "com.github.oen9"
ThisBuild / organizationName := "oen9"
maintainer := "[email protected]"
val zioVersion = "1.0.0-RC17"
lazy val root = (project in file("."))
.settings(
name := "tray-backlight-control",
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % zioVersion,
"dev.zio" %% "zio-macros-core" % "0.6.2",
"dev.zio" %% "zio-macros-test" % "0.6.2",
"com.formdev" % "flatlaf" % "0.27",
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test,
),
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"),
scalacOptions ++= Seq(
"-Xlint",
"-unchecked",
"-deprecation",
"-feature",
"-language:higherKinds",
"-Ymacro-annotations"
)
)
.enablePlugins(JavaAppPackaging)