@@ -27,7 +27,7 @@ lazy val commonSettings = Seq(
2727 version := " 0.0.1-SNAPSHOT" ,
2828 fork := true ,
2929 resolvers += " osm4scala repo" at " https://dl.bintray.com/angelcervera/maven" ,
30- scalaVersion := " 2.12.10 " ,
30+ scalaVersion := " 2.12.11 " ,
3131// Compile / scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
3232 Compile / javacOptions ++= Seq (" -Xlint:unchecked" , " -Xlint:deprecation" )
3333// run / javaOptions ++= Seq("-Xms128m", "-Xmx1024m", "-Djava.library.path=./target/native"),
@@ -114,17 +114,19 @@ lazy val core = (project in file("core"))
114114 " com.simplexportal.spatial.Main"
115115 ),
116116 libraryDependencies ++= Seq (
117- " com.typesafe.akka" %% " akka-http" % akkaHttpVersion,
118- " com.typesafe.akka" %% " akka-http-spray-json" % akkaHttpVersion,
119117 " com.typesafe.akka" %% " akka-actor-typed" % akkaVersion,
120118 " com.typesafe.akka" %% " akka-persistence-typed" % akkaVersion,
121119 " com.typesafe.akka" %% " akka-persistence-query" % akkaVersion,
122120 " com.typesafe.akka" %% " akka-stream-typed" % akkaVersion,
123121 " com.typesafe.akka" %% " akka-cluster-typed" % akkaVersion,
124122 " com.typesafe.akka" %% " akka-cluster-sharding-typed" % akkaVersion,
123+ " com.typesafe.akka" %% " akka-cluster-tools" % akkaVersion,
124+ " com.typesafe.akka" %% " akka-persistence-cassandra" % " 1.0.0-RC1" ,
125+ " com.typesafe.akka" %% " akka-discovery" % akkaVersion, // FIXME: Remove after update sbt-akka-grpc
126+ " com.typesafe.akka" %% " akka-http" % akkaHttpVersion,
127+ " com.typesafe.akka" %% " akka-http-spray-json" % akkaHttpVersion,
125128 " io.altoo" %% " akka-kryo-serialization" % akkaKryoSerializationVersion,
126129 " ch.megard" %% " akka-http-cors" % akkaHttpCorsVersion,
127- " com.typesafe.akka" %% " akka-discovery" % akkaVersion, // FIXME: Remove after update sbt-akka-grpc
128130 " org.fusesource.leveldbjni" % " leveldbjni-all" % leveldbVersion,
129131 " ch.qos.logback" % " logback-classic" % " 1.2.3" ,
130132 " io.jvm.uuid" %% " scala-uuid" % scalaUUIDVersion,
@@ -133,10 +135,10 @@ lazy val core = (project in file("core"))
133135 " org.postgresql" % " postgresql" % postgresJDBCDriver
134136 ) ++ Seq (
135137 " com.typesafe.akka" %% " akka-actor-testkit-typed" % akkaVersion,
138+ " com.typesafe.akka" %% " akka-multi-node-testkit" % akkaVersion,
136139 " org.scalatest" %% " scalatest" % scalatestVersion,
137140 " org.scalactic" %% " scalactic" % scalatestVersion,
138- " com.github.pathikrit" %% " better-files" % betterFilesVersion,
139- " com.typesafe.akka" %% " akka-multi-node-testkit" % akkaVersion
141+ " com.github.pathikrit" %% " better-files" % betterFilesVersion
140142 ).map(_ % Test )
141143 )
142144 .enablePlugins(UniversalPlugin )
0 commit comments