Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.openapitools.generator.gradle.plugin.tasks.GenerateTask

plugins {
id("uk.gov.justice.hmpps.gradle-spring-boot") version "10.0.5"
kotlin("plugin.spring") version "2.3.10"
kotlin("plugin.jpa") version "2.3.10"
id("uk.gov.justice.hmpps.gradle-spring-boot") version "10.1.0"
kotlin("plugin.spring") version "2.3.20"
kotlin("plugin.jpa") version "2.3.20"
jacoco
id("org.openapi.generator") version "7.20.0"
id("io.sentry.jvm.gradle") version "6.1.0"
id("io.sentry.jvm.gradle") version "6.2.0"
}

allOpen {
Expand All @@ -24,7 +24,7 @@ configurations {
}

dependencies {
implementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter:2.0.2")
implementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter:2.1.0")

// Spring boot dependencies
implementation("org.springframework.boot:spring-boot-starter-security")
Expand All @@ -33,8 +33,8 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-webclient")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.data:spring-data-envers:4.0.3")
implementation("uk.gov.justice.service.hmpps:hmpps-sqs-spring-boot-starter:7.0.1")
implementation("org.springframework.data:spring-data-envers:4.0.4")
implementation("uk.gov.justice.service.hmpps:hmpps-sqs-spring-boot-starter:7.1.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.10.2")
Expand All @@ -45,7 +45,7 @@ dependencies {
implementation("org.springframework.retry:spring-retry")
implementation("org.springframework:spring-aspects")

implementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.25.0")
implementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.26.0")

// OpenAPI
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.2")
Expand All @@ -57,7 +57,7 @@ dependencies {
}
}

implementation("aws.sdk.kotlin:s3:1.6.34")
implementation("aws.sdk.kotlin:s3:1.6.40")

// Other dependencies
implementation("org.apache.commons:commons-text:1.15.0")
Expand All @@ -67,8 +67,8 @@ dependencies {
runtimeOnly("org.postgresql:postgresql")

// Test dependencies
testImplementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter-test:2.0.2")
testImplementation("uk.gov.justice.service.hmpps:hmpps-subject-access-request-test-support:2.0.4")
testImplementation("uk.gov.justice.service.hmpps:hmpps-kotlin-spring-boot-starter-test:2.1.0")
testImplementation("uk.gov.justice.service.hmpps:hmpps-subject-access-request-test-support:2.1.0")
testImplementation("org.springframework.boot:spring-boot-starter-webflux-test")
testImplementation("org.springframework.boot:spring-boot-starter-webmvc-test")
testImplementation("org.wiremock:wiremock-standalone:3.13.2")
Expand All @@ -77,7 +77,7 @@ dependencies {
testImplementation("org.testcontainers:localstack:1.21.4")
testImplementation("io.jsonwebtoken:jjwt-impl:0.13.0")
testImplementation("io.jsonwebtoken:jjwt-jackson:0.13.0")
testImplementation("org.mockito.kotlin:mockito-kotlin:6.2.3") // temp, fix version to prevent dependency clash between sar test support lib and hmpps kotlin plugin
testImplementation("org.mockito.kotlin:mockito-kotlin:6.3.0") // temp, fix version to prevent dependency clash between sar test support lib and hmpps kotlin plugin
testImplementation("org.mockito:mockito-inline:5.2.0")
testImplementation("net.javacrumbs.json-unit:json-unit:5.1.1")
testImplementation("net.javacrumbs.json-unit:json-unit-assertj:5.1.1")
Expand Down
Loading