Skip to content

Commit

Permalink
Update all non major Gradle dependencies (#397)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
renovate[bot] and ushkarev authored Nov 30, 2024
1 parent d176bf6 commit ae4b45b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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")
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ae4b45b

Please sign in to comment.