Skip to content

Commit

Permalink
Merge pull request #451 from JohnLCaron/updateLibs
Browse files Browse the repository at this point in the history
Update gradle to 8.6.
  • Loading branch information
JohnLCaron authored Feb 6, 2024
2 parents dad24da + 2b3bc63 commit 4b9469b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
20 changes: 14 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
[versions]
coroutines-version = "1.6.4"
kotlin-version = "1.9.20"
coroutines-version = "1.8.0-RC2"
kotlin-version = "1.9.22"
ktor-version = "2.3.4"
xmlutil-version = "0.86.3"

[libraries]
bull-result = { module = "com.michael-bull.kotlin-result:kotlin-result", version = "1.1.18" }
kotlinx-cli = { module = "org.jetbrains.kotlinx:kotlinx-cli", version = "0.3.6" }
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines-version" }
kotlinx-datetime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version = "0.4.1" }
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.6.0" }
kotlinx-datetime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version = "0.5.0" }
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.6.2" }
pdvrieze-xmlutil-core-xml = { module = "io.github.pdvrieze.xmlutil:core-jvm", version.ref = "xmlutil-version" }
pdvrieze-xmlutil-serialization-xml = { module = "io.github.pdvrieze.xmlutil:serialization-jvm", version.ref = "xmlutil-version" }
pbandk = { module = "pro.streem.pbandk:pbandk-runtime", version = "0.14.2" }
oshai-logging = { module = "io.github.oshai:kotlin-logging", version = "5.1.0" }
logback-classic = { module = "ch.qos.logback:logback-classic", version = "1.4.11" }
oshai-logging = { module = "io.github.oshai:kotlin-logging", version = "6.0.3" }
logback-classic = { module = "ch.qos.logback:logback-classic", version = "1.4.14" }

ktor-server-core-jvm = { module = "io.ktor:ktor-server-core-jvm", version.ref = "ktor-version" }
ktor-server-auth-jvm = { module = "io.ktor:ktor-server-auth-jvm", version.ref = "ktor-version" }
Expand Down Expand Up @@ -42,6 +45,7 @@ mockk = { module = "io.mockk:mockk", version = "1.13.7" }
eglib = ["bull-result", "kotlinx-cli", "kotlinx-coroutines-core", "kotlinx-datetime", "kotlinx-serialization-json", "oshai-logging"]
egtest = ["test-common", "test-annotations-common", "kotlinx-coroutines-test", "kotest-property"]
jvmtest = ["junit-jupiter-params", "kotlin-test-junit5", "logback-classic", "mockk"]
logging = ["oshai-logging", "logback-classic"]

ktor-server = [
"ktor-server-core-jvm",
Expand Down Expand Up @@ -70,6 +74,10 @@ ktor-client-test = [
"kotlin-test",
"mockk",
]
xmlutil = [
"pdvrieze-xmlutil-core-xml",
"pdvrieze-xmlutil-serialization-xml",
]

[plugins]
ktor = { id = "io.ktor.plugin", version.ref = "ktor-version" }
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down

0 comments on commit 4b9469b

Please sign in to comment.