File tree Expand file tree Collapse file tree 7 files changed +21
-18
lines changed Expand file tree Collapse file tree 7 files changed +21
-18
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build-test :
11
11
if : github.repository == 'apache/pekko-http-quickstart-java.g8'
12
- runs-on : ubuntu-20 .04
12
+ runs-on : ubuntu-22 .04
13
13
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v4
16
+ uses : actions/checkout@v5
17
17
18
18
- name : Setup Java 17
19
- uses : actions/setup-java@v4
19
+ uses : actions/setup-java@v5
20
20
with :
21
21
distribution : temurin
22
22
java-version : 17
23
23
24
24
- name : Cache Coursier cache
25
- uses : coursier/cache-action@v6
25
+ uses : coursier/cache-action@4e2615869d13561d626ed48655e1a39e5b192b3c # v6.4.7
26
26
27
27
- name : sbt test
28
28
run : sbt test
@@ -37,20 +37,23 @@ jobs:
37
37
38
38
build-docs :
39
39
if : github.repository == 'apache/pekko-http-quickstart-java.g8'
40
- runs-on : ubuntu-20 .04
40
+ runs-on : ubuntu-22 .04
41
41
42
42
steps :
43
43
- name : Checkout
44
- uses : actions/checkout@v4
44
+ uses : actions/checkout@v5
45
45
46
46
- name : Setup Java 11
47
- uses : actions/setup-java@v4
47
+ uses : actions/setup-java@v5
48
48
with :
49
49
distribution : temurin
50
50
java-version : 11
51
51
52
+ - name : Install sbt
53
+ uses : sbt/setup-sbt@17575ea4e18dd928fe5968dbe32294b97923d65b # v1.1.13
54
+
52
55
- name : Cache Coursier cache
53
- uses : coursier/cache-action@v6
56
+ uses : coursier/cache-action@4e2615869d13561d626ed48655e1a39e5b192b3c # v6.4.7
54
57
55
58
- name : sbt & Paradox
56
59
run : sbt test docs/paradox
Original file line number Diff line number Diff line change 1
- sbt.version =1.10.4
1
+ sbt.version =1.11.6
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
def versions = [
11
11
PekkoVersion : " $pekko_version $" ,
12
12
PekkoHttpVersion : " $pekko_http_version $" ,
13
- ScalaBinary : " 2.13 "
13
+ ScalaBinary : " 3 "
14
14
]
15
15
dependencies {
16
16
implementation platform(" org.apache.pekko:pekko-http-bom_\$ {versions.ScalaBinary}:\$ {versions.PekkoHttpVersion}" )
@@ -19,7 +19,7 @@ dependencies {
19
19
implementation " org.apache.pekko:pekko-http-jackson_\$ {versions.ScalaBinary}"
20
20
implementation " org.apache.pekko:pekko-actor-typed_\$ {versions.ScalaBinary}:\$ {versions.PekkoVersion}"
21
21
implementation " org.apache.pekko:pekko-stream_\$ {versions.ScalaBinary}:\$ {versions.PekkoVersion}"
22
- implementation ' ch.qos.logback:logback-classic:1.3.14 '
22
+ implementation ' ch.qos.logback:logback-classic:1.3.15 '
23
23
testImplementation " org.apache.pekko:pekko-http-testkit_\$ {versions.ScalaBinary}"
24
24
testImplementation " org.apache.pekko:pekko-actor-testkit-typed_\$ {versions.ScalaBinary}:\$ {versions.PekkoVersion}"
25
25
testImplementation ' junit:junit:4.13.2'
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ lazy val root = (project in file(".")).
5
5
settings(
6
6
inThisBuild(List (
7
7
organization := " $organization$" ,
8
- scalaVersion := " 2.13.14 " ,
8
+ scalaVersion := " 3.3.6 " ,
9
9
name := " $name$"
10
10
)),
11
11
name := " TestProject" ,
@@ -14,7 +14,7 @@ lazy val root = (project in file(".")).
14
14
" org.apache.pekko" %% " pekko-actor-typed" % pekkoVersion,
15
15
" org.apache.pekko" %% " pekko-stream" % pekkoVersion,
16
16
" org.apache.pekko" %% " pekko-http-jackson" % pekkoHttpVersion,
17
- " ch.qos.logback" % " logback-classic" % " 1.3.14 " ,
17
+ " ch.qos.logback" % " logback-classic" % " 1.3.15 " ,
18
18
19
19
" org.apache.pekko" %% " pekko-testkit" % pekkoVersion % Test ,
20
20
" org.apache.pekko" %% " pekko-http-testkit" % pekkoHttpVersion % Test ,
Original file line number Diff line number Diff line change 1
1
name =My Pekko HTTP Project
2
- pekko_http_version =1.1 .0
3
- pekko_version =1.1.2
2
+ pekko_http_version =1.2 .0
3
+ pekko_version =1.2.0
4
4
organization =com.example
5
5
package =$organization$
6
6
verbatim =gradlew gradlew.bat gradle-wrapper.properties gradle-wrapper.jar
Original file line number Diff line number Diff line change 9
9
<properties >
10
10
<pekko .version>$pekko_version$</pekko .version>
11
11
<pekko .http.version>$pekko_http_version$</pekko .http.version>
12
- <scala .binary.version>2.13 </scala .binary.version>
12
+ <scala .binary.version>3 </scala .binary.version>
13
13
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
14
</properties >
15
15
47
47
<dependency >
48
48
<groupId >ch.qos.logback</groupId >
49
49
<artifactId >logback-classic</artifactId >
50
- <version >1.3.14 </version >
50
+ <version >1.3.15 </version >
51
51
</dependency >
52
52
<dependency >
53
53
<groupId >org.apache.pekko</groupId >
Original file line number Diff line number Diff line change 1
- sbt.version =1.10.0
1
+ sbt.version =1.11.6
You can’t perform that action at this time.
0 commit comments