This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-pekko-quickstart-java.g8.git
The following commit(s) were added to refs/heads/main by this push:
new 08b58f4 pekko 1.0.2 and other upgrades (#9)
08b58f4 is described below
commit 08b58f4631eeaf1d53f89bc4c8a6ec65c951a7ab
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Dec 2 12:40:24 2023 +0100
pekko 1.0.2 and other upgrades (#9)
---
.github/workflows/build-test.yml | 9 +++++----
docs/build.sbt | 2 +-
project/build.properties | 2 +-
src/main/g8/build.gradle | 2 +-
src/main/g8/build.sbt | 6 +++---
src/main/g8/default.properties | 2 +-
src/main/g8/pom.xml | 2 +-
7 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 9088599..58ddbc1 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -8,18 +8,19 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
- name: Set up JDK 11
- uses: olafurpg/setup-scala@v10
+ uses: actions/setup-java@v4
with:
- java-version: [email protected]
+ distribution: temurin
+ java-version: 11
- name: Cache Coursier cache
- uses: coursier/[email protected]
+ uses: coursier/cache-action@v6
- name: sbt test
# This runs the template with the default parameters, and runs test
within the templated app.
diff --git a/docs/build.sbt b/docs/build.sbt
index 769eed1..6c4f98f 100644
--- a/docs/build.sbt
+++ b/docs/build.sbt
@@ -1,4 +1,4 @@
-scalaVersion := "2.13.11"
+scalaVersion := "2.13.12"
Compile / paradoxProperties ++= Map(
"snip.g8root.base_dir" -> "../../../../src/main/g8",
diff --git a/project/build.properties b/project/build.properties
index 3040987..e8a1e24 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -1 +1 @@
-sbt.version=1.9.4
+sbt.version=1.9.7
diff --git a/src/main/g8/build.gradle b/src/main/g8/build.gradle
index 0d77601..25c1f18 100644
--- a/src/main/g8/build.gradle
+++ b/src/main/g8/build.gradle
@@ -10,7 +10,7 @@ repositories {
dependencies {
implementation 'org.apache.pekko:pekko-actor-typed_2.13:$pekko_version$'
- implementation 'ch.qos.logback:logback-classic:1.2.3'
+ implementation 'ch.qos.logback:logback-classic:1.2.13'
testImplementation
'org.apache.pekko:pekko-actor-testkit-typed_2.13:$pekko_version$'
testImplementation 'junit:junit:4.13.1'
}
diff --git a/src/main/g8/build.sbt b/src/main/g8/build.sbt
index 13dd306..a8d34f8 100644
--- a/src/main/g8/build.sbt
+++ b/src/main/g8/build.sbt
@@ -2,7 +2,7 @@ name := "pekko-quickstart-java"
version := "1.0"
-scalaVersion := "2.13.11"
+scalaVersion := "2.13.12"
lazy val pekkoVersion = "$pekko_version$"
@@ -15,6 +15,6 @@ fork := true
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-actor-typed" % pekkoVersion,
"org.apache.pekko" %% "pekko-actor-testkit-typed" % pekkoVersion,
- "ch.qos.logback" % "logback-classic" % "1.2.3",
- "junit" % "junit" % "4.13.1" % Test,
+ "ch.qos.logback" % "logback-classic" % "1.2.13",
+ "junit" % "junit" % "4.13.2" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test)
diff --git a/src/main/g8/default.properties b/src/main/g8/default.properties
index 2aed181..32dabe3 100644
--- a/src/main/g8/default.properties
+++ b/src/main/g8/default.properties
@@ -1,5 +1,5 @@
name = pekko-quickstart-java
description = Apache Pekko is a toolkit and runtime for building highly
concurrent, distributed, and fault tolerant event-driven apps. This simple
application will get you started building Actor based systems with Java.
-pekko_version=1.0.1
+pekko_version=1.0.2
sbt_version=maven(org.scala-sbt, sbt, stable)
package=com.example
diff --git a/src/main/g8/pom.xml b/src/main/g8/pom.xml
index 4901178..154ba56 100644
--- a/src/main/g8/pom.xml
+++ b/src/main/g8/pom.xml
@@ -19,7 +19,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
- <version>1.2.11</version>
+ <version>1.2.13</version>
</dependency>
<dependency>
<groupId>org.apache.pekko</groupId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]