-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
39 lines (27 loc) · 843 Bytes
/
build.sbt
File metadata and controls
39 lines (27 loc) · 843 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
36
37
38
39
import ReleaseTransformations._
organization := "org.konstructs"
name := "konstructs-server-api"
scalaVersion := "2.12.4"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
crossPaths := false
autoScalaLibrary := false
val akkaVersion = "2.4.20"
javacOptions in (Compile, compile) ++= Seq( "-Xlint:deprecation", "-Xlint:unchecked" )
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.google.code.gson" % "gson" % "2.8.2",
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
)
bintrayOrganization := Some("konstructs")
fork in run := true
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
setNextVersion,
commitNextVersion,
pushChanges
)