This is an automated email from the ASF dual-hosted git repository.
raboof pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/pekko-grpc-quickstart-scala.g8.git
The following commit(s) were added to refs/heads/main by this push:
new 8320916 upgrade some dependencies (#35)
8320916 is described below
commit 83209169ee881e61f7acf2653788c1fe418f3724
Author: PJ Fanning <[email protected]>
AuthorDate: Sat May 30 14:24:10 2026 +0100
upgrade some dependencies (#35)
---
src/main/g8/build.gradle | 4 ++--
src/main/g8/build.sbt | 4 ++--
src/main/g8/default.properties | 2 +-
src/main/g8/gradle/wrapper/gradle-wrapper.properties | 2 +-
src/main/g8/pom.xml | 6 +++---
src/main/g8/project/plugins.sbt | 2 +-
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/main/g8/build.gradle b/src/main/g8/build.gradle
index 74df1bd..0f1b218 100644
--- a/src/main/g8/build.gradle
+++ b/src/main/g8/build.gradle
@@ -20,11 +20,11 @@ dependencies {
implementation
'org.apache.pekko:pekko-stream_$scala_major_version$:$pekko_version$'
implementation
'org.apache.pekko:pekko-pki_$scala_major_version$:$pekko_version$'
- implementation 'ch.qos.logback:logback-classic:1.3.15'
+ implementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation
'org.apache.pekko:pekko-actor-testkit-typed_$scala_major_version$:$pekko_version$'
testImplementation
'org.apache.pekko:pekko-stream-testkit_$scala_major_version$:$pekko_version$'
- testImplementation 'org.scalatest:scalatest_$scala_major_version$:3.2.19'
+ testImplementation 'org.scalatest:scalatest_$scala_major_version$:3.2.20'
// optional in Scalatest
testRuntimeOnly 'com.vladsch.flexmark:flexmark-all:0.62.2'
// Required by https://github.com/maiflai/gradle-scalatest
diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt
index ee5e971..62a091b 100644
--- a/src/main/g8/build.sbt
+++ b/src/main/g8/build.sbt
@@ -21,9 +21,9 @@ libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-discovery" % pekkoVersion,
"org.apache.pekko" %% "pekko-pki" % pekkoVersion,
- "ch.qos.logback" % "logback-classic" % "1.3.15",
+ "ch.qos.logback" % "logback-classic" % "1.3.16",
"org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion % Test,
"org.apache.pekko" %% "pekko-stream-testkit" % pekkoVersion % Test,
- "org.scalatest" %% "scalatest" % "3.2.19" % Test
+ "org.scalatest" %% "scalatest" % "3.2.20" % Test
)
diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties
index 703fd6a..5521184 100644
--- a/src/main/g8/default.properties
+++ b/src/main/g8/default.properties
@@ -1,7 +1,7 @@
name = pekko-grpc-quickstart-scala
description = Apache Pekko gRPC is a toolkit for building streaming gRPC
servers and clients on top of Pekko Streams. This simple application will get
you started building gRPC based systems with Scala. This app uses Pekko, Scala,
and ScalaTest.
pekko_grpc_version=1.2.0
-pekko_version=1.4.0
+pekko_version=1.6.0
sbt_version=maven(org.scala-sbt, sbt, stable)
scala_major_version=2.13
scala_version=2.13.18
diff --git a/src/main/g8/gradle/wrapper/gradle-wrapper.properties
b/src/main/g8/gradle/wrapper/gradle-wrapper.properties
index a441313..d4081da 100644
--- a/src/main/g8/gradle/wrapper/gradle-wrapper.properties
+++ b/src/main/g8/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/src/main/g8/pom.xml b/src/main/g8/pom.xml
index 4bdbb5c..2ba3a55 100644
--- a/src/main/g8/pom.xml
+++ b/src/main/g8/pom.xml
@@ -48,7 +48,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
- <version>1.3.15</version>
+ <version>1.3.16</version>
</dependency>
<dependency>
@@ -68,7 +68,7 @@
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_\${scala.binary.version}</artifactId>
- <version>3.2.19</version>
+ <version>3.2.20</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -78,7 +78,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <version>4.9.1</version>
+ <version>4.9.3</version>
<executions>
<execution>
<goals>
diff --git a/src/main/g8/project/plugins.sbt b/src/main/g8/project/plugins.sbt
index f5035c6..151ca7f 100644
--- a/src/main/g8/project/plugins.sbt
+++ b/src/main/g8/project/plugins.sbt
@@ -1,3 +1,3 @@
addSbtPlugin("org.apache.pekko" % "pekko-grpc-sbt-plugin" %
"$pekko_grpc_version$")
-addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.1.8")
+addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.2.0")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]