Skip to content

Commit 7ced256

Browse files
committed
upgrade 3rd party dependencies and Gradle
1 parent e244096 commit 7ced256

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ plugins {
1010
}
1111

1212
group = "nkiesel.org"
13-
version = "2.0.2"
13+
version = "2.1.0"
1414

1515
repositories {
1616
mavenCentral()
1717
}
1818

1919
dependencies {
20-
implementation("com.github.ajalt.clikt:clikt:4.1.0")
20+
implementation("com.github.ajalt.clikt:clikt:4.2.0")
2121
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
22-
implementation("org.http4k:http4k-core:5.4.1.0")
23-
implementation("org.http4k:http4k-client-okhttp:5.4.1.0")
22+
implementation("org.http4k:http4k-core:5.7.2.0")
23+
implementation("org.http4k:http4k-client-okhttp:5.7.2.0")
2424

2525
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
2626
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")

gradle/wrapper/gradle-wrapper.jar

1.61 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
44
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

gradlew

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ done
8383
# This is normally unused
8484
# shellcheck disable=SC2034
8585
APP_BASE_NAME=${0##*/}
86-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
8788

8889
# Use the maximum available, or set MAX_FD != -1 to use that value.
8990
MAX_FD=maximum
@@ -130,10 +131,13 @@ location of your Java installation."
130131
fi
131132
else
132133
JAVACMD=java
133-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134+
if ! command -v java >/dev/null 2>&1
135+
then
136+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134137
135138
Please set the JAVA_HOME variable in your environment to match the
136139
location of your Java installation."
140+
fi
137141
fi
138142

139143
# Increase the maximum file descriptors if we can.

0 commit comments

Comments
 (0)