Skip to content

Commit aebf78e

Browse files
authored
Merge branch 'master' into update/scaffeine-5.1.2
2 parents b43869e + bad5a0b commit aebf78e

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ For a maven project add:
3131
```
3232
to your `pom.xml`.
3333

34+
> :warning: Since Akka [does not allow mixed versions](https://doc.akka.io/docs/akka/current/common/binary-compatibility-rules.html#mixed-versioning-is-not-allowed) in a project, Akka dependencies are marked a `Provided`. This means that your application `libraryDependencies` needs to directly include Akka as a dependency. The minimal supported Akka version is 2.6.16.
35+
36+
3437
## Source code
3538

3639
Source code for this plugin can be found on [GitHub](https://github.com/SwissBorg/akka-persistence-postgres).

project/Dependencies.scala

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ object Dependencies {
44
val Scala213 = "2.13.7"
55
val ScalaVersions = Seq(Scala213)
66

7-
val AkkaVersion = "2.6.18"
8-
val AkkaBinaryVersion = "2.6"
9-
val FlywayVersion = "8.2.3"
7+
val AkkaVersion = "2.6.16"
8+
val FlywayVersion = "8.3.0"
109
val ScaffeineVersion = "5.1.2"
1110
val ScalaTestVersion = "3.2.10"
1211
val SlickVersion = "3.3.3"
1312
val SlickPgVersion = "0.20.2"
1413

15-
val LogbackVersion = "1.2.9"
14+
val LogbackVersion = "1.2.10"
1615

1716
val JdbcDrivers = Seq("org.postgresql" % "postgresql" % "42.3.1")
1817

@@ -25,16 +24,17 @@ object Dependencies {
2524
"com.typesafe.akka" %% "akka-persistence-tck" % AkkaVersion % Test,
2625
"com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion % Test,
2726
"com.typesafe.akka" %% "akka-testkit" % AkkaVersion % Test,
28-
"com.typesafe.akka" %% "akka-persistence-query" % AkkaVersion,
27+
"com.typesafe.akka" %% "akka-persistence-query" % AkkaVersion % Provided,
2928
"com.typesafe.slick" %% "slick" % SlickVersion,
3029
"com.typesafe.slick" %% "slick-hikaricp" % SlickVersion,
3130
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test) ++ JdbcDrivers.map(_ % Test)
3231

33-
val Migration: Seq[ModuleID] = (Seq(
34-
"org.scalatest" %% "scalatest" % ScalaTestVersion,
35-
"com.typesafe.akka" %% "akka-testkit" % AkkaVersion,
36-
"ch.qos.logback" % "logback-classic" % LogbackVersion,
37-
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
38-
"com.typesafe.akka" %% "akka-serialization-jackson" % AkkaVersion,
39-
"org.flywaydb" % "flyway-core" % FlywayVersion) ++ JdbcDrivers).map(_ % Test)
32+
val Migration: Seq[ModuleID] =
33+
Seq("com.typesafe.akka" %% "akka-persistence-query" % AkkaVersion).map(_ % Compile) ++ (Seq(
34+
"org.scalatest" %% "scalatest" % ScalaTestVersion,
35+
"com.typesafe.akka" %% "akka-testkit" % AkkaVersion,
36+
"ch.qos.logback" % "logback-classic" % LogbackVersion,
37+
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
38+
"com.typesafe.akka" %% "akka-serialization-jackson" % AkkaVersion,
39+
"org.flywaydb" % "flyway-core" % FlywayVersion) ++ JdbcDrivers).map(_ % Test)
4040
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
sbt.version=1.5.8
16+
sbt.version=1.6.1

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// compliance
2-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.5")
2+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
33
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.1")
44
// release
55
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")

0 commit comments

Comments
 (0)