-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.sbt
More file actions
35 lines (22 loc) · 864 Bytes
/
Copy pathbuild.sbt
File metadata and controls
35 lines (22 loc) · 864 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
32
33
34
35
ThisBuild / tlBaseVersion := "0.12"
ThisBuild / tlCiReleaseBranches := Seq("master")
enablePlugins(ScalaJSPlugin)
enablePlugins(TzdbPlugin)
enablePlugins(LocalesPlugin)
import locales._
Global / onChangedBuildSource := IgnoreSourceChanges
val zonesFilterFn = { (z: String) => z == "America/Santiago" || z == "Pacific/Honolulu" }
zonesFilter := zonesFilterFn
dbVersion := TzdbPlugin.Version("2022a")
cldrVersion := CLDRVersion.Version("38.1")
localesFilter := LocalesFilter.Selection("en-US")
supportNumberFormats := false
scalaVersion := "3.3.8"
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.6.0"
)
libraryDependencies ++=
Seq(
("org.portable-scala" %%% "portable-scala-reflect" % "1.1.3").cross(CrossVersion.for3Use2_13)
)
libraryDependencies += "org.scala-lang" %% "scala3-library" % scalaVersion.value