From ae4b45b36c083269e520f04e8ff5083ea966f3db Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 13:44:10 +0000 Subject: [PATCH] Update all non major Gradle dependencies (#397) * Update all non major Gradle dependencies * Keep kotlin plugins < 2.1 since ktlint (and others??) seems to not work --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Igor --- build.gradle.kts | 20 ++++++++++---------- buildSrc/build.gradle.kts | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 53019541..0156bf8e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ import uk.gov.justice.digital.hmpps.gradle.PortForwardRedisTask import uk.gov.justice.digital.hmpps.gradle.RevealSecretsTask plugins { - id("uk.gov.justice.hmpps.gradle-spring-boot") version "6.0.9" + id("uk.gov.justice.hmpps.gradle-spring-boot") version "6.1.0" kotlin("plugin.jpa") version "2.0.21" kotlin("plugin.spring") version "2.0.21" idea @@ -16,21 +16,21 @@ configurations { } dependencies { - implementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter:1.0.8") + implementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter:1.1.0") implementation("org.springframework.boot:spring-boot-starter-webflux") implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-validation") - implementation("uk.gov.justice.service.hmpps:hmpps-sqs-spring-boot-starter:5.1.1") - implementation("uk.gov.justice.service.hmpps:hmpps-digital-prison-reporting-lib:7.0.5") + implementation("uk.gov.justice.service.hmpps:hmpps-sqs-spring-boot-starter:5.2.0") + implementation("uk.gov.justice.service.hmpps:hmpps-digital-prison-reporting-lib:7.2.2") implementation("io.opentelemetry:opentelemetry-api:1.44.1") implementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.10.0") implementation("com.vladmihalcea:hibernate-types-60:2.21.1") - implementation("org.hibernate.orm:hibernate-community-dialects:6.6.2.Final") + implementation("org.hibernate.orm:hibernate-community-dialects:6.6.3.Final") - implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0") + implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0") implementation("com.zaxxer:HikariCP:6.2.1") runtimeOnly("org.flywaydb:flyway-database-postgresql") @@ -39,16 +39,16 @@ dependencies { developmentOnly("org.springframework.boot:spring-boot-devtools") - testImplementation("org.wiremock:wiremock-standalone:3.9.2") + testImplementation("org.wiremock:wiremock-standalone:3.10.0") - testImplementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter-test:1.0.8") + testImplementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter-test:1.1.0") testImplementation("org.awaitility:awaitility-kotlin:4.2.2") testImplementation("org.mockito:mockito-inline:5.2.0") testImplementation("io.swagger.parser.v3:swagger-parser:2.1.24") testImplementation("org.springframework.security:spring-security-test") testImplementation("io.opentelemetry:opentelemetry-sdk-testing") - testImplementation("org.testcontainers:localstack:1.20.3") - testImplementation("org.testcontainers:postgresql:1.20.3") + testImplementation("org.testcontainers:localstack:1.20.4") + testImplementation("org.testcontainers:postgresql:1.20.4") } kotlin { diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index b42b78b7..d9826bcc 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -6,7 +6,7 @@ version = "1.0-SNAPSHOT" description = "Custom gradle tasks" plugins { - kotlin("jvm") version "2.0.21" + kotlin("jvm") version "2.1.0" } repositories {