Skip to content

Commit ba50d1a

Browse files
committed
Bump version
1 parent 0a38827 commit ba50d1a

File tree

5 files changed

+13
-21
lines changed

5 files changed

+13
-21
lines changed

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,26 @@ object Versions {
22
const val project = "0.4.2-SNAPSHOT"
33

44
const val java = 11
5-
const val kotlin = "1.8.21"
5+
const val kotlin = "1.9.10"
66

7-
const val radarCommons = "1.0.0"
8-
const val confluent = "7.4.0"
7+
const val radarCommons = "1.1.1"
8+
const val confluent = "7.5.0"
99
const val kafka = "$confluent-ce"
1010

1111
// From image
1212
const val jackson = "2.14.2"
1313

1414
const val log4j2 = "2.20.0"
15-
const val slf4j = "2.0.7"
15+
const val slf4j = "2.0.9"
1616

1717
const val okhttp = "4.11.0"
1818

1919
const val managementPortal = "2.0.0"
2020

2121
const val firebaseAdmin = "9.1.0"
22-
const val radarSchemas = "0.8.3"
22+
const val radarSchemas = "0.8.4"
2323

2424
const val junit = "5.9.3"
25-
const val hamcrest = "2.2"
2625
const val wiremock = "2.27.2"
2726
const val mockito = "5.3.1"
2827
}

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.1.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.

settings.gradle.kts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,5 @@ pluginManagement {
66
repositories {
77
gradlePluginPortal()
88
mavenCentral()
9-
maven(url = "https://maven.pkg.github.com/radar-base/radar-commons") {
10-
credentials {
11-
username = System.getenv("GITHUB_ACTOR")
12-
?: extra.properties["gpr.user"] as? String
13-
?: extra.properties["public.gpr.user"] as? String
14-
password = System.getenv("GITHUB_TOKEN")
15-
?: extra.properties["gpr.token"] as? String
16-
?: (extra.properties["public.gpr.token"] as? String)?.let {
17-
java.util.Base64.getDecoder().decode(it).decodeToString()
18-
}
19-
}
20-
}
219
}
2210
}

0 commit comments

Comments
 (0)