-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.sbt
40 lines (32 loc) · 904 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
32
33
34
35
36
37
38
39
40
import Dependencies._
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-unchecked",
"-encoding", "UTF-8",
"-language:implicitConversions",
"-language:postfixOps",
"-language:higherKinds"
)
crossScalaVersions := Seq("2.11.8", "2.12.4")
scalaVersion := "2.12.4"
organization := "com.ajjpj.simple-akka-downing"
version := "0.9.3"
lazy val `simple-akka-downing` = (project in file("."))
.enablePlugins(MultiJvmPlugin)
.configs(MultiJvm)
.settings(
parallelExecution in Test := false,
name := "simple-akka-downing",
libraryDependencies += akkaCluster,
libraryDependencies += akkaHttp % Test,
libraryDependencies += scalaTest % Test,
libraryDependencies += testKit % Test,
libraryDependencies += multiNodeTestKit % Test,
)
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)