Skip to content

Commit

Permalink
Fix version of sbt-native-packager used in PSH (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelLipski authored Jun 26, 2024
1 parent 4f9b8d1 commit 880d0c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/akka-persistence-app/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
resolvers += Resolver.ApacheMavenSnapshotsRepo

val akkaGrpcSbtPluginVersion = "2.1.6"
val sbtNativePackagerVersion = "1.9.9"

addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % sbtNativePackagerVersion)
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % akkaGrpcSbtPluginVersion)
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
Expand Down
1 change: 1 addition & 0 deletions examples/akka-persistence-app/project/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")
1 change: 1 addition & 0 deletions scripts/akka-to-pekko.sed
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ s/(val pekkoManagementVersion) = .*/\1 = "1.0.0"/
s/(val pekkoPersistenceJdbcVersion) = .*/\1 = "1.0.0"/
s/(val pekkoProjectionVersion) = .*/\1 = "1.0.0"/
s/(val pekkoVersion) = .*/\1 = "1.0.3"/
s/(val sbtNativePackagerVersion) = ".*"/\1 = "1.10.0"/

0 comments on commit 880d0c9

Please sign in to comment.