forked from schmitch/akka-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
46 lines (42 loc) · 1.46 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
name := "akka-xlsx"
lazy val PekkoXmlVersion = "1.0.2"
//Override transitive dependency to fix statefulMapConcat issue from 1.0.2.
// Can be removed when pekko-xml 1.0.3+ is released.
lazy val PekkoStreamVersion = "1.0.3"
lazy val PekkoTestkitVersion = "1.0.3"
lazy val ScalatestVersion = "3.2.19"
lazy val ScalatestPlusVersion = "3.2.19.0"
lazy val commonSettings = Seq(
updateOptions := updateOptions.value.withGigahorse(false),
scalaVersion := "2.13.14",
organization := "de.envisia.akka",
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-feature",
"-unchecked",
"-deprecation",
"-Xfatal-warnings",
),
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-o"),
publishMavenStyle := true,
pomIncludeRepository := (_ => false),
)
lazy val root = (project in file("."))
.settings(commonSettings ++ Seq(
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-connectors-xml" % PekkoXmlVersion,
"org.apache.pekko" %% "pekko-stream" % PekkoStreamVersion,
) ++ Seq(
"org.apache.pekko" %% "pekko-stream-testkit" % PekkoTestkitVersion,
"org.scalatest" %% "scalatest" % ScalatestVersion,
"org.scalatestplus" %% "scalacheck-1-18" % ScalatestPlusVersion,
).map(_ % Test)
))
licenses += ("Apache License 2", new URL("http://www.apache.org/licenses/LICENSE-2.0.html"))
developers += Developer(
"schmitch",
"Christian Schmitt",
"c.schmitt@briefdomain.de",
new URL("https://github.com/schmitch/")
)