Skip to content

Commit

Permalink
SDI-409: ⬆️ Grab latest spring boot gradle plugin (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
petergphillips committed Oct 5, 2022
1 parent 899a8df commit 0dbc9e3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
hmpps: ministryofjustice/hmpps@5.1
hmpps: ministryofjustice/hmpps@5.2

parameters:
alerts-slack-channel:
Expand Down
6 changes: 6 additions & 0 deletions .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ CVE-2022-38751
# Suppression for snakeyaml 1.31 vulnerability as not fixed yet
# Can be suppressed as we we don't parse untrusted yaml
CVE-2022-38752
# Suppression for jackson databind 2.13.4 as no release for it yet
# Can be suppressed as UNWRAP_SINGLE_VALUE_ARRAYS is not enabled
CVE-2022-42003
# Suppression for jackson databind 2.13.3 as bundled with application insights
# Can be suppressed as don't parse untrusted json in application insights
CVE-2022-42004
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("uk.gov.justice.hmpps.gradle-spring-boot") version "4.5.2-beta"
id("uk.gov.justice.hmpps.gradle-spring-boot") version "4.5.4"
kotlin("plugin.spring") version "1.7.10"
}

Expand All @@ -20,7 +20,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
implementation("uk.gov.justice.service.hmpps:hmpps-sqs-spring-boot-starter:1.1.10")
implementation("uk.gov.justice.service.hmpps:hmpps-sqs-spring-boot-starter:1.1.11")
implementation("org.springframework.boot:spring-boot-starter-data-r2dbc")

implementation("org.springdoc:springdoc-openapi-webflux-ui:1.6.11")
Expand All @@ -41,10 +41,10 @@ dependencies {
testImplementation("io.swagger.parser.v3:swagger-parser:2.1.3")

testImplementation("com.github.tomakehurst:wiremock-standalone:2.27.2")
testImplementation("org.testcontainers:localstack:1.17.3")
testImplementation("org.testcontainers:localstack:1.17.5")
testImplementation("org.awaitility:awaitility-kotlin:4.2.0")
testImplementation("org.testcontainers:postgresql:1.17.3")
testImplementation("io.mockk:mockk:1.13.1")
testImplementation("org.testcontainers:postgresql:1.17.5")
testImplementation("io.mockk:mockk:1.13.2")
}

java {
Expand Down

0 comments on commit 0dbc9e3

Please sign in to comment.