-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
50 lines (48 loc) · 1.45 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
import Keys._
import xerial.sbt.Sonatype._
val akkaVersion = "2.7.0"
lazy val root = Project(
id = "akka-persistence-no-ops",
base = file(".")
).settings(
name := "akka-persistence-no-ops",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-persistence-tck" % akkaVersion % "test"
),
organization := "com.github.mingchuno",
scalaVersion := "2.13.10",
version := "0.1.0",
crossScalaVersions := Seq("2.12.13"),
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature",
"-language:existentials",
"-language:implicitConversions",
"-language:higherKinds",
"-language:postfixOps"
),
Test / parallelExecution := false,
Test / fork := true,
Test / testOptions += Tests.Argument("-oD"),
publishTo := SonatypeKeys.sonatypePublishTo.value,
publishMavenStyle := true,
homepage := Some(url("https://github.com/mingchuno/akka-persistence-no-ops")),
scmInfo := Some(
ScmInfo(
url("https://github.com/mingchuno/akka-persistence-no-ops"),
"scm:git@github.com:mingchuno/akka-persistence-no-ops.git"
)
),
developers := List(
Developer(
id = "mingchuno",
name = "Or Ming Chun",
email = "mingchuno@gmail.com",
url = url("https://github.com/mingchuno")
)
),
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
)