File tree Expand file tree Collapse file tree 5 files changed +13
-21
lines changed
Expand file tree Collapse file tree 5 files changed +13
-21
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
5+ validateDistributionUrl =true
56zipStoreBase =GRADLE_USER_HOME
67zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 8383# This is normally unused
8484# shellcheck disable=SC2034
8585APP_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.
8990MAX_FD=maximum
@@ -130,10 +131,13 @@ location of your Java installation."
130131 fi
131132else
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
135138Please set the JAVA_HOME variable in your environment to match the
136139location of your Java installation."
140+ fi
137141fi
138142
139143# Increase the maximum file descriptors if we can.
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments