Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps #33

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/pekko-cluster-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version := "0.1"
scalaVersion := "2.13.14"

val circeVersion = "0.14.7"
val pekkoVersion = "1.0.2"
val pekkoVersion = "1.0.3-M1"

lazy val `pekko-cluster-app` = project
.in(file("."))
Expand Down
4 changes: 2 additions & 2 deletions examples/pekko-persistence-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Global / cancelable := false // ctrl-c

ThisBuild / resolvers += Resolver.ApacheMavenSnapshotsRepo

val pekkoVersion = "1.0.2"
val pekkoHttpVersion = "1.0.1"
val pekkoVersion = "1.0.3-M1"
val pekkoHttpVersion = "1.1.0-M1"
val pekkoHttp2SupportVersion = "0.0.0+4272-045c925b-SNAPSHOT"
val pekkoManagementVersion = "1.0.0"
val pekkoPersistenceJdbcVersion = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/pekko-persistence-app/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resolvers += Resolver.ApacheMavenSnapshotsRepo

val pekkoGrpcSbtPluginVersion = "1.0.0"
val pekkoGrpcSbtPluginVersion = "1.0.3-M1"

addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
addSbtPlugin("org.apache.pekko" % "pekko-grpc-sbt-plugin" % pekkoGrpcSbtPluginVersion)
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ object Dependencies {
val scalaVersion212 = "2.12.19"

val pekkoProjectionVersion = "1.0.0"
val pekkoGrpcRuntimeVersion = "1.0.2"
val pekkoHttpCorsVersion = "1.0.1"
val pekkoVersion = "1.0.2"
val pekkoGrpcRuntimeVersion = "1.0.3-M1"
val pekkoHttpCorsVersion = "1.1.0-M1"
val pekkoVersion = "1.0.3-M1"
val borerVersion = "1.8.0"
val circeYamlVersion = "1.15.0"
val circeVersion = "0.14.7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lazy val scala212 = "2.12.18"
name := "simple-dump"
version := "0.1"
scalaVersion := scala213
val pekkoVersion = "1.0.2"
val pekkoVersion = "1.0.3-M1"
libraryDependencies += "org.apache.pekko" %% "pekko-persistence-typed" % pekkoVersion
crossScalaVersions := Seq(scala213, scala212)

Expand Down
Loading