Skip to content

Commit f7697ea

Browse files
Update all dependencies
| datasource | package | from | to | | -------------- | ----------------------------------------------------------------------------------------- | ---------- | ---------- | | gradle-version | gradle | 8.7 | 8.12 | | maven | org.sonarqube:org.sonarqube.gradle.plugin | 6.0.0.5145 | 6.0.1.5171 | | maven | org.jetbrains:annotations | 26.0.0 | 26.0.1 | | maven | org.apache.logging.log4j:log4j-slf4j2-impl | 2.22.0 | 2.24.3 | | maven | org.apache.logging.log4j:log4j-core | 2.22.0 | 2.24.3 | | maven | org.apache.logging.log4j:log4j-api | 2.22.0 | 2.24.3 | | maven | com.diffplug.spotless:com.diffplug.spotless.gradle.plugin | 6.23.2 | 6.25.0 | | maven | com.diffplug.spotless:spotless-plugin-gradle | 6.23.2 | 6.25.0 | | maven | io.gitlab.arturbosch.detekt:io.gitlab.arturbosch.detekt.gradle.plugin | 1.23.4 | 1.23.7 | | maven | io.gitlab.arturbosch.detekt:detekt-gradle-plugin | 1.23.4 | 1.23.7 | | maven | com.gradle.develocity:com.gradle.develocity.gradle.plugin | 3.17.2 | 3.19 | | maven | org.assertj:assertj-core | 3.24.2 | 3.27.2 | | maven | io.kotest:kotest-runner-junit5 | 5.8.0 | 5.9.1 | | maven | io.kotest:kotest-property | 5.8.0 | 5.9.1 | | maven | io.kotest:kotest-framework-engine | 5.8.0 | 5.9.1 | | maven | io.kotest:kotest-assertions-core | 5.8.0 | 5.9.1 | | maven | org.jetbrains.kotlinx.kover:org.jetbrains.kotlinx.kover.gradle.plugin | 0.8.1 | 0.9.1 | | maven | org.junit.jupiter:junit-jupiter-api | 5.10.2 | 5.11.4 | | maven | org.junit:junit-bom | 5.10.2 | 5.11.4 | | maven | org.apache.commons:commons-text | 1.11.0 | 1.13.0 | | maven | io.github.gradle-nexus.publish-plugin:io.github.gradle-nexus.publish-plugin.gradle.plugin | 2.0.0-rc-1 | 2.0.0 | | maven | com.github.spotbugs:com.github.spotbugs.gradle.plugin | 6.0.1 | 6.0.27 | | maven | com.github.spotbugs.snom:spotbugs-gradle-plugin | 6.0.1 | 6.0.27 | | maven | io.freefair.lombok:io.freefair.lombok.gradle.plugin | 8.4 | 8.11 | | maven | io.vavr:vavr | 0.10.4 | 0.10.5 | | maven | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 2.0.0 | 2.1.0 | | maven | org.jetbrains.kotlin:kotlin-gradle-plugin | 2.0.0 | 2.1.0 |
1 parent 6049d9e commit f7697ea

File tree

7 files changed

+115
-111
lines changed

7 files changed

+115
-111
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
alias(libs.plugins.lombok.gradle) apply false
1616
id(libs.plugins.kover.pluginId)
1717
alias(libs.plugins.nexus.publish)
18-
id("org.sonarqube") version "6.0.0.5145"
18+
id("org.sonarqube") version "6.0.1.5171"
1919
}
2020

2121
allprojects { apply(plugin = "vador.root-conventions") }

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -55,7 +57,7 @@
5557
# Darwin, MinGW, and NonStop.
5658
#
5759
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5961
# within the Gradle project.
6062
#
6163
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -84,7 +86,7 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# 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
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
8890

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

gradlew.bat

Lines changed: 94 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,94 @@
1-
@rem
2-
@rem Copyright 2015 the original author or authors.
3-
@rem
4-
@rem Licensed under the Apache License, Version 2.0 (the "License");
5-
@rem you may not use this file except in compliance with the License.
6-
@rem You may obtain a copy of the License at
7-
@rem
8-
@rem https://www.apache.org/licenses/LICENSE-2.0
9-
@rem
10-
@rem Unless required by applicable law or agreed to in writing, software
11-
@rem distributed under the License is distributed on an "AS IS" BASIS,
12-
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
@rem See the License for the specific language governing permissions and
14-
@rem limitations under the License.
15-
@rem
16-
17-
@if "%DEBUG%"=="" @echo off
18-
@rem ##########################################################################
19-
@rem
20-
@rem Gradle startup script for Windows
21-
@rem
22-
@rem ##########################################################################
23-
24-
@rem Set local scope for the variables with windows NT shell
25-
if "%OS%"=="Windows_NT" setlocal
26-
27-
set DIRNAME=%~dp0
28-
if "%DIRNAME%"=="" set DIRNAME=.
29-
@rem This is normally unused
30-
set APP_BASE_NAME=%~n0
31-
set APP_HOME=%DIRNAME%
32-
33-
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
34-
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
35-
36-
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
37-
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
38-
39-
@rem Find java.exe
40-
if defined JAVA_HOME goto findJavaFromJavaHome
41-
42-
set JAVA_EXE=java.exe
43-
%JAVA_EXE% -version >NUL 2>&1
44-
if %ERRORLEVEL% equ 0 goto execute
45-
46-
echo. 1>&2
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48-
echo. 1>&2
49-
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50-
echo location of your Java installation. 1>&2
51-
52-
goto fail
53-
54-
:findJavaFromJavaHome
55-
set JAVA_HOME=%JAVA_HOME:"=%
56-
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
57-
58-
if exist "%JAVA_EXE%" goto execute
59-
60-
echo. 1>&2
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62-
echo. 1>&2
63-
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64-
echo location of your Java installation. 1>&2
65-
66-
goto fail
67-
68-
:execute
69-
@rem Setup the command line
70-
71-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
72-
73-
74-
@rem Execute Gradle
75-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
76-
77-
:end
78-
@rem End local scope for the variables with windows NT shell
79-
if %ERRORLEVEL% equ 0 goto mainEnd
80-
81-
:fail
82-
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83-
rem the _cmd.exe /c_ return code!
84-
set EXIT_CODE=%ERRORLEVEL%
85-
if %EXIT_CODE% equ 0 set EXIT_CODE=1
86-
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
87-
exit /b %EXIT_CODE%
88-
89-
:mainEnd
90-
if "%OS%"=="Windows_NT" endlocal
91-
92-
:omega
1+
@rem
2+
@rem Copyright 2015 the original author or authors.
3+
@rem
4+
@rem Licensed under the Apache License, Version 2.0 (the "License");
5+
@rem you may not use this file except in compliance with the License.
6+
@rem You may obtain a copy of the License at
7+
@rem
8+
@rem https://www.apache.org/licenses/LICENSE-2.0
9+
@rem
10+
@rem Unless required by applicable law or agreed to in writing, software
11+
@rem distributed under the License is distributed on an "AS IS" BASIS,
12+
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
@rem See the License for the specific language governing permissions and
14+
@rem limitations under the License.
15+
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
18+
19+
@if "%DEBUG%"=="" @echo off
20+
@rem ##########################################################################
21+
@rem
22+
@rem Gradle startup script for Windows
23+
@rem
24+
@rem ##########################################################################
25+
26+
@rem Set local scope for the variables with windows NT shell
27+
if "%OS%"=="Windows_NT" setlocal
28+
29+
set DIRNAME=%~dp0
30+
if "%DIRNAME%"=="" set DIRNAME=.
31+
@rem This is normally unused
32+
set APP_BASE_NAME=%~n0
33+
set APP_HOME=%DIRNAME%
34+
35+
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
36+
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
37+
38+
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
39+
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
40+
41+
@rem Find java.exe
42+
if defined JAVA_HOME goto findJavaFromJavaHome
43+
44+
set JAVA_EXE=java.exe
45+
%JAVA_EXE% -version >NUL 2>&1
46+
if %ERRORLEVEL% equ 0 goto execute
47+
48+
echo. 1>&2
49+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
50+
echo. 1>&2
51+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
52+
echo location of your Java installation. 1>&2
53+
54+
goto fail
55+
56+
:findJavaFromJavaHome
57+
set JAVA_HOME=%JAVA_HOME:"=%
58+
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
59+
60+
if exist "%JAVA_EXE%" goto execute
61+
62+
echo. 1>&2
63+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
64+
echo. 1>&2
65+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
66+
echo location of your Java installation. 1>&2
67+
68+
goto fail
69+
70+
:execute
71+
@rem Setup the command line
72+
73+
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
74+
75+
76+
@rem Execute Gradle
77+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
78+
79+
:end
80+
@rem End local scope for the variables with windows NT shell
81+
if %ERRORLEVEL% equ 0 goto mainEnd
82+
83+
:fail
84+
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
85+
rem the _cmd.exe /c_ return code!
86+
set EXIT_CODE=%ERRORLEVEL%
87+
if %EXIT_CODE% equ 0 set EXIT_CODE=1
88+
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
89+
exit /b %EXIT_CODE%
90+
91+
:mainEnd
92+
if "%OS%"=="Windows_NT" endlocal
93+
94+
:omega

libs.versions.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
[versions]
22
jdk = "11"
3-
kotlin = "2.0.0"
4-
java-vavr = "0.10.4"
3+
kotlin = "2.1.0"
4+
java-vavr = "0.10.5"
55
kotlin-vavr = "0.10.2"
6-
lombok-gradle = "8.4"
6+
lombok-gradle = "8.11"
77
hamcrest-core = "3.0"
88
hamcrest-date = "2.0.8"
99
typeTools = "0.6.3"
10-
spotbugs = "6.0.1"
10+
spotbugs = "6.0.27"
1111
assertj-vavr = "0.4.3"
1212
reflection-util = "2.15.0" # 2.15.0 is Compatable with Java 11
13-
nexus-publish = "2.0.0-rc-1"
14-
apache-common-text-version = "1.11.0"
13+
nexus-publish = "2.0.0"
14+
apache-common-text-version = "1.13.0"
1515

1616
# Common dependencies
17-
junit = "5.10.2"
18-
kover = "0.8.1"
19-
kotest = "5.8.0"
20-
assertj-core = "3.24.2"
21-
detekt = "1.23.4"
22-
spotless = "6.23.2"
23-
apache-log4j = "2.22.0"
17+
junit = "5.11.4"
18+
kover = "0.9.1"
19+
kotest = "5.9.1"
20+
assertj-core = "3.27.2"
21+
detekt = "1.23.7"
22+
spotless = "6.25.0"
23+
apache-log4j = "2.24.3"
2424
testLogger = "4.0.0"
25-
jetbrains-annotations = "26.0.0"
25+
jetbrains-annotations = "26.0.1"
2626

2727
[libraries]
2828
hamcrest-core = { module = "org.hamcrest:hamcrest", version.ref = "hamcrest-core" }

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* https://opensource.org/licenses/BSD-3-Clause
66
* ****************************************************************************
77
*/
8-
plugins { id("com.gradle.develocity") version "3.17.2" }
8+
plugins { id("com.gradle.develocity") version "3.19" }
99

1010
dependencyResolutionManagement {
1111
versionCatalogs { create("libs") { from(files("libs.versions.toml")) } }

0 commit comments

Comments
 (0)