-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
50 lines (45 loc) · 2.01 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
name := "MVP2"
version := "0.1"
organization := "org.encryfoundation"
scalaVersion := "2.12.6"
val akkaVersion = "2.5.13"
val akkaHttpVersion = "10.0.9"
val logbackVersion = "1.2.3"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8",
"org.iq80.leveldb" % "leveldb" % "0.7",
"io.circe" %% "circe-generic" % "0.9.3",
"io.circe" %% "circe-parser" % "0.9.3",
"javax.xml.bind" % "jaxb-api" % "2.3.0",
"com.iheart" %% "ficus" % "1.4.2",
"org.slf4j" % "slf4j-api" % "1.7.25",
"org.bouncycastle" % "bcprov-jdk15on" % "1.58",
"org.whispersystems" % "curve25519-java" % "0.5.0",
"org.rudogma" %% "supertagged" % "1.4",
"de.heikoseeberger" %% "akka-http-circe" % "1.20.1",
"org.influxdb" % "influxdb-java" % "2.10",
"org.apache.commons" % "commons-io" % "1.3.2",
"commons-net" % "commons-net" % "3.6",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"ch.qos.logback" % "logback-classic" % logbackVersion,
"ch.qos.logback" % "logback-core" % logbackVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % Test,
"com.thesamet.scalapb" %% "scalapb-runtime" % scalapb.compiler.Version.scalapbVersion % "protobuf"
)
resolvers ++= Seq("Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/",
"SonaType" at "https://oss.sonatype.org/content/groups/public",
"Typesafe maven releases" at "http://repo.typesafe.com/typesafe/maven-releases/",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/")
fork in Test := true
fork in run := true
connectInput in run := true
outputStrategy := Some(StdoutOutput)
PB.targets in Compile := Seq(
scalapb.gen() -> (sourceManaged in Compile).value
)