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

pekko 1.1.1 #361

Merged
merged 4 commits into from
Sep 16, 2024
Merged
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
6 changes: 3 additions & 3 deletions plugin-tester-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ def scalaBinaryVersion = "${scalaVersion.major}.${scalaVersion.minor}"
dependencies {
implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.1.0-M1"
implementation "org.scala-lang:scala-library:${scalaFullVersion}"
testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.0-M1"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.18"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.18.0"
testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.1"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.19"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.19.0"
}

tasks.withType(Copy).configureEach {
Expand Down
6 changes: 3 additions & 3 deletions plugin-tester-scala/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def scalaBinaryVersion = "${scalaVersion.major}.${scalaVersion.minor}"
dependencies {
implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.1.0-M1"
implementation "org.scala-lang:scala-library:${scalaFullVersion}"
testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.0-M1"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.18"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.18.0"
testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.1"
testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.19"
testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.19.0"
}

tasks.withType(Copy).configureEach {
Expand Down
2 changes: 1 addition & 1 deletion plugin-tester-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<pekko.version>1.1.0-M1</pekko.version>
<pekko.version>1.1.1</pekko.version>
<pekko.http.version>1.1.0-M1</pekko.http.version>
<grpc.version>1.66.0</grpc.version> <!-- checked synced by VersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ object Dependencies {
val googleProtoc = "3.25.3" // checked synced by VersionSyncCheckPlugin
val googleProtobufJava = "3.25.4"

val scalaTest = "3.2.18"
val scalaTest = "3.2.19"

val maven = "3.9.9"
}
Expand Down
2 changes: 1 addition & 1 deletion project/PekkoCoreDependency.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ import com.github.pjfanning.pekkobuild.PekkoDependency
object PekkoCoreDependency extends PekkoDependency {
override val checkProject: String = "pekko-cluster-sharding-typed"
override val module: Option[String] = None
override val currentVersion: String = "1.1.0-M1"
override val currentVersion: String = "1.1.1"
}
Loading