-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
28 lines (19 loc) · 1008 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
name := "http"
organization := "com.github.propi.rdfrules"
version := "1.8.0"
scalaVersion := "2.13.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-opt:inline", "-encoding", "utf8")
//scalacOptions += "-Xlog-implicits"
parallelExecution in Test := false
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oF")
resolvers ++= Seq("jitpack" at "https://jitpack.io")
val akkaV = "2.6.19"
val akkaHttpV = "10.2.9"
libraryDependencies += organization.value %% "core" % version.value
libraryDependencies += "com.typesafe.akka" %% "akka-actor-typed" % akkaV
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % akkaV
libraryDependencies += "com.typesafe.akka" %% "akka-slf4j" % akkaV
libraryDependencies += "com.typesafe.akka" %% "akka-http" % akkaHttpV
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV
libraryDependencies += "com.github.kxbmap" %% "configs" % "0.6.1"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.7.36"