Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f232bcb

Browse files
committedJul 19, 2023
chore: helidon nima M1 update
1 parent f28ec29 commit f232bcb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ kotlinx-coroutines = "1.7.2"
2828
kotlinx-datetime = "0.4.0"
2929
kotlinx-serialization = "1.5.1"
3030
kotlinx-collections-immutable = "0.3.5"
31-
kotlinx-lincheck = "2.21"
31+
kotlinx-lincheck = "2.22"
3232
kotlinx-benchmark = "0.4.8"
3333
kotlinx-reflect-lite = "1.0.0"
3434
zip-prefixer = "0.3.1"
3535
ajalt-clikt = "4.1.0"
3636
ajalt-mordant = "2.0.1"
3737
ajalt-colormath = "3.3.1"
3838
dokka = "1.8.20"
39-
helidon-nima = "4.0.0-ALPHA6"
39+
helidon-nima = "4.0.0-M1"
4040
jgit = "6.6.0.202305301015-r"
4141
jte = "3.0.1"
4242
junit = "5.10.0-RC1"
@@ -61,14 +61,14 @@ intellij-markdown = "0.4.1"
6161
# Plugin versions
6262
benmanes = "0.47.0"
6363
foojay-resolver = "0.6.0"
64-
gradle-enterprise = "3.13.4"
64+
gradle-enterprise = "3.14"
6565
nexus-publish = "2.0.0-rc-1"
6666
shadow = "8.1.1"
67-
spotless = "6.19.0"
67+
spotless = "6.20.0"
6868
semver-plugin = "0.5.0-rc.1"
6969
taskinfo = "2.1.0"
7070
dependency-analysis = "1.20.0"
71-
best-practices-plugin = "0.9"
71+
best-practices-plugin = "0.10"
7272
graalvm-nativeimage = "0.9.23"
7373
beryx-jlink = "2.24.4"
7474
beryx-runtime = "1.13.0"

‎src/main/kotlin/dev/suresh/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ fun main(args: Array<String>) {
8585
Runtime.getRuntime().addShutdownHook(Thread { println("Shutting down...") })
8686

8787
cmdArgs = args.toList()
88-
webServer = WebServer.builder().port(9080).routing(::routes).start()
88+
webServer = WebServer.builder().port(9080).routing(::routes).build().start()
8989

9090
val vmTime =
9191
ProcessHandle.current().info().startInstant().getOrDefault(Instant.now()).toEpochMilli()

0 commit comments

Comments
 (0)
Please sign in to comment.