diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index df6a6ad7..a9db1155 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/gradlew b/gradlew index b9bb139f..249efbb0 100755 --- a/gradlew +++ b/gradlew @@ -20,7 +20,7 @@ ############################################################################## # -# Gradle start up script for POSIX generated by Gradle. +# gradlew start up script for POSIX generated by Gradle. # # Important for running: # @@ -29,7 +29,7 @@ # bash, then to run this script, type that shell name before the whole # command line, like: # -# ksh Gradle +# ksh gradlew # # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: diff --git a/gradlew.bat b/gradlew.bat index aa5f10b0..8508ef68 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -19,7 +19,7 @@ @if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem -@rem Gradle startup script for Windows +@rem gradlew startup script for Windows @rem @rem ########################################################################## @@ -72,7 +72,7 @@ echo location of your Java installation. 1>&2 -@rem Execute Gradle +@rem Execute gradlew @rem endlocal doesn't take effect until after the line is parsed and variables are expanded @rem which allows us to clear the local environment before executing the java command endlocal & "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* & call :exitWithErrorLevel diff --git a/services/system-tests/build.gradle.kts b/services/system-tests/build.gradle.kts index 86fa0f64..02e2ed11 100644 --- a/services/system-tests/build.gradle.kts +++ b/services/system-tests/build.gradle.kts @@ -10,15 +10,15 @@ import org.gradle.api.tasks.testing.Test dependencies { testImplementation("io.rest-assured:rest-assured:6.0.0") - testImplementation("org.junit.jupiter:junit-jupiter:6.1.0") + testImplementation("org.junit.jupiter:junit-jupiter:6.1.1") testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation("org.assertj:assertj-core:3.27.7") testImplementation("org.testcontainers:testcontainers:2.0.5") testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.5") testImplementation("dev.turingcomplete:kotlin-onetimepassword:3.0.0") testImplementation("commons-codec:commons-codec:1.22.0") - testRuntimeOnly("org.postgresql:postgresql:42.7.11") - testImplementation("com.microsoft.playwright:playwright:1.60.0") + testRuntimeOnly("org.postgresql:postgresql:42.7.12") + testImplementation("com.microsoft.playwright:playwright:1.61.0") } val testSourceSet = extensions.getByType(SourceSetContainer::class.java).getByName("test")