Skip to content

Commit 0f4dd4b

Browse files
committed
Upgrade to KVision 8.1.0
1 parent e7c1772 commit 0f4dd4b

File tree

156 files changed

+199
-204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+199
-204
lines changed

addressbook-fullstack-javalin/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0
66
slf4jVersion=2.0.7
77
hikariVersion=3.2.0
88
commonsCodecVersion=1.10

addressbook-fullstack-javalin/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook-fullstack-jooby/gradle.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
6-
systemProp.joobyVersion=3.4.2
5+
systemProp.kvisionVersion=8.1.0
6+
systemProp.joobyVersion=3.5.4
77
h2Version=1.4.197
88
pgsqlVersion=42.2.2
99
kweryVersion=0.17
10-
logbackVersion=1.5.10
10+
logbackVersion=1.5.12
1111
commonsLoggingVersion=1.2
12-
pac4jVersion=5.7.0
12+
pac4jVersion=6.1.0
1313
springSecurityCryptoVersion=5.1.0.RELEASE
1414

1515
kotlin.mpp.stability.nowarn=true

addressbook-fullstack-jooby/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook-fullstack-jooby/src/jvmMain/kotlin/com/example/Main.kt

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import com.github.andrewoma.kwery.core.ThreadLocalSession
44
import com.github.andrewoma.kwery.core.interceptor.LoggingInterceptor
55
import com.typesafe.config.Config
66
import io.jooby.hikari.HikariModule
7-
import io.jooby.pac4j.Pac4jModule
8-
import io.jooby.pac4j.Pac4jOptions
97
import io.jooby.kt.require
108
import io.jooby.kt.runApp
9+
import io.jooby.pac4j.Pac4jModule
10+
import io.jooby.pac4j.Pac4jOptions
1111
import io.kvision.remote.applyRoutes
1212
import io.kvision.remote.getServiceManager
1313
import io.kvision.remote.kvisionInit
@@ -20,13 +20,13 @@ fun main(args: Array<String>) {
2020
kvisionInit()
2121
install(HikariModule("db"))
2222
applyRoutes(getServiceManager<IRegisterProfileService>())
23-
val config = org.pac4j.core.config.Config()
24-
config.addAuthorizer("Authorizer") { _, _, _ -> true }
23+
2524
install(Pac4jModule(Pac4jOptions().apply {
25+
addAuthorizer("Authorizer") { _, _, _ -> true }
2626
defaultUrl = "/"
27-
}, config).client("*", "Authorizer") { _ ->
28-
FormClient("/") { credentials, context, sessionStore ->
29-
require(MyDbProfileService::class).validate(credentials as UsernamePasswordCredentials, context, sessionStore)
27+
}).client("*", "Authorizer") { _ ->
28+
FormClient("/") { context, credentials ->
29+
require(MyDbProfileService::class).validate(context, credentials as UsernamePasswordCredentials)
3030
}
3131
})
3232
applyRoutes(getServiceManager<IAddressService>())

addressbook-fullstack-ktor-koin/gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
6-
ktorVersion=2.3.12
5+
systemProp.kvisionVersion=8.1.0
6+
ktorVersion=3.0.1
77
hikariVersion=3.2.0
88
commonsCodecVersion=1.10
99
jdbcNamedParametersVersion=1.1
1010
exposedVersion=0.17.14
11-
logbackVersion=1.5.10
11+
logbackVersion=1.5.12
1212
h2Version=1.4.197
1313
pgsqlVersion=42.2.2
1414
kweryVersion=0.17

addressbook-fullstack-ktor-koin/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook-fullstack-ktor-koin/src/jvmMain/kotlin/com/example/Main.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import com.example.Db.dbQuery
44
import io.ktor.http.*
55
import io.ktor.server.application.*
66
import io.ktor.server.auth.*
7-
import io.ktor.server.plugins.callloging.*
7+
import io.ktor.server.plugins.calllogging.*
88
import io.ktor.server.plugins.compression.*
99
import io.ktor.server.plugins.defaultheaders.*
1010
import io.ktor.server.response.*

addressbook-fullstack-ktor/gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
6-
ktorVersion=2.3.12
5+
systemProp.kvisionVersion=8.1.0
6+
ktorVersion=3.0.1
77
hikariVersion=3.2.0
88
commonsCodecVersion=1.10
99
jdbcNamedParametersVersion=1.1
1010
exposedVersion=0.17.14
11-
logbackVersion=1.5.10
11+
logbackVersion=1.5.12
1212
h2Version=1.4.197
1313
pgsqlVersion=42.2.2
1414
kweryVersion=0.17

addressbook-fullstack-ktor/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook-fullstack-ktor/src/jvmMain/kotlin/com/example/Main.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import com.example.Db.dbQuery
44
import io.ktor.http.*
55
import io.ktor.server.application.*
66
import io.ktor.server.auth.*
7-
import io.ktor.server.plugins.callloging.*
7+
import io.ktor.server.plugins.calllogging.*
88
import io.ktor.server.plugins.compression.*
99
import io.ktor.server.plugins.defaultheaders.*
1010
import io.ktor.server.response.*
@@ -16,7 +16,6 @@ import io.kvision.remote.kvisionInit
1616
import org.apache.commons.codec.digest.DigestUtils
1717
import org.jetbrains.exposed.sql.and
1818
import org.jetbrains.exposed.sql.select
19-
import kotlin.collections.set
2019

2120
fun Application.main() {
2221
install(Compression)

addressbook-fullstack-micronaut/gradle.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
4-
systemProp.micronautPluginsVersion=4.4.3
5-
systemProp.shadowVersion=8.3.3
3+
systemProp.kotlinVersion=2.1.0
4+
systemProp.micronautPluginsVersion=4.4.4
5+
systemProp.shadowVersion=8.3.5
66
#Dependencies
7-
systemProp.kvisionVersion=8.0.1
8-
micronautVersion=4.6.3
7+
systemProp.kvisionVersion=8.1.0
8+
micronautVersion=4.7.1
99
coroutinesVersion=1.9.0
1010
springSecurityCryptoVersion=5.7.3
1111
springDataR2dbcVersion=1.5.2

addressbook-fullstack-micronaut/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook-fullstack-spring-boot/gradle.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
systemProp.dependencyManagementPluginVersion=1.1.6
5-
systemProp.springBootVersion=3.3.4
5+
systemProp.springBootVersion=3.4.0
66
#Dependencies
7-
systemProp.kvisionVersion=8.0.1
7+
systemProp.kvisionVersion=8.1.0
88
coroutinesVersion=1.9.0
99
r2dbcPostgresqlVersion=1.0.1.RELEASE
1010
r2dbcH2Version=1.0.0.RELEASE

addressbook-fullstack-spring-boot/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook-fullstack-vertx/gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0
66
systemProp.vertxPluginVersion=1.4.0
77
systemProp.shadowVersion=8.3.3
8-
logbackVersion=1.5.10
9-
vertxVersion=4.5.10
8+
logbackVersion=1.5.12
9+
vertxVersion=4.5.11
1010
hikariVersion=3.2.0
1111
commonsCodecVersion=1.10
1212
jdbcNamedParametersVersion=1.1

addressbook-fullstack-vertx/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0

addressbook-tabulator/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

addressbook/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0

addressbook/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

desktop/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0

desktop/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/addressbook-tabulator/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
24.9 KB
Binary file not shown.
155 KB
Binary file not shown.
-154 KB
Binary file not shown.
-115 KB
Binary file not shown.
-24.9 KB
Binary file not shown.
116 KB
Binary file not shown.

docs/addressbook/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
24.9 KB
Binary file not shown.
155 KB
Binary file not shown.
-154 KB
Binary file not shown.
Binary file not shown.
-115 KB
Binary file not shown.
-24.9 KB
Binary file not shown.
Binary file not shown.
116 KB
Binary file not shown.

docs/desktop/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/fomantic/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/helloworld/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/onsenui-kitchensink/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/patternfly/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/pokedex/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/pokedex/service-worker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
66.5 KB
Binary file not shown.
-414 KB
Binary file not shown.
-10.6 KB
Binary file not shown.
-204 KB
Binary file not shown.
-66.4 KB
Binary file not shown.
206 KB
Binary file not shown.
24.9 KB
Binary file not shown.
155 KB
Binary file not shown.
-154 KB
Binary file not shown.
416 KB
Binary file not shown.
-115 KB
Binary file not shown.
-24.9 KB
Binary file not shown.
10.6 KB
Binary file not shown.
116 KB
Binary file not shown.

docs/showcase/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/showcase/main.bundle.js.LICENSE.txt

+3-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
*/
1212

1313
/*!
14-
* @kurkle/color v0.3.2
14+
* @kurkle/color v0.3.4
1515
* https://github.com/kurkle/color#readme
16-
* (c) 2023 Jukka Kurkela
16+
* (c) 2024 Jukka Kurkela
1717
* Released under the MIT License
1818
*/
1919

2020
/*!
21-
* Chart.js v4.4.5
21+
* Chart.js v4.4.6
2222
* https://www.chartjs.org
2323
* (c) 2024 Chart.js Contributors
2424
* Released under the MIT License
@@ -557,10 +557,6 @@
557557
* Date: 2023-08-28T13:37Z
558558
*/
559559

560-
/*! @orchidjs/unicode-variants | https://github.com/orchidjs/unicode-variants | Apache License (v2) */
561-
562-
/*! sifter.js | https://github.com/orchidjs/sifter.js | Apache License (v2) */
563-
564560
/**
565561
* @license React
566562
* react-dom.production.min.js

docs/template/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/todomvc/main.bundle.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

encoder-fullstack-ktor/gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
6-
ktorVersion=2.3.12
5+
systemProp.kvisionVersion=8.1.0
6+
ktorVersion=3.0.1
77
hikariVersion=3.2.0
88
commonsCodecVersion=1.10
99
jdbcNamedParametersVersion=1.1
1010
exposedVersion=0.17.14
11-
logbackVersion=1.5.10
11+
logbackVersion=1.5.12
1212
h2Version=1.4.197
1313
pgsqlVersion=42.2.2
1414
kweryVersion=0.17

encoder-fullstack-ktor/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

fomantic/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0

fomantic/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

helloworld/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0

helloworld/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

mini-template/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
systemProp.kotlinVersion=2.0.21
2-
systemProp.kvisionVersion=8.0.1
1+
systemProp.kotlinVersion=2.1.0
2+
systemProp.kvisionVersion=8.1.0

mini-template/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

numbers-fullstack-javalin/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
javaVersion=17
22
#Plugins
3-
systemProp.kotlinVersion=2.0.21
3+
systemProp.kotlinVersion=2.1.0
44
#Dependencies
5-
systemProp.kvisionVersion=8.0.1
5+
systemProp.kvisionVersion=8.1.0
66
slf4jVersion=2.0.7
77

88
kotlin.mpp.stability.nowarn=true

0 commit comments

Comments
 (0)