Skip to content
Closed
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
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ plugins {
id 'application'
id 'java'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.springframework.boot' version '3.5.5'
id 'org.springframework.boot' version '3.5.6'
id 'jacoco'
id 'maven-publish'
id "com.github.ben-manes.versions" version "0.52.0"
id "org.cyclonedx.bom" version "2.3.1"
id "com.github.ben-manes.versions" version "0.53.0"
id "org.cyclonedx.bom" version "2.4.1"
id "au.com.dius.pact" version "4.6.17"
id 'pmd'
}
Expand Down Expand Up @@ -265,7 +265,7 @@ tasks.named('processPactVerificationTestResources') {
dependencies {
implementation "uk.gov.hmcts.cp:api-cp-crime-schedulingandlisting-courtschedule:$apiCourtScheduleVersion"
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13'
implementation 'io.swagger.core.v3:swagger-core:2.2.36'
implementation 'io.swagger.core.v3:swagger-core:2.2.37'
implementation 'javax.xml.bind:jaxb-api:2.3.1'

implementation 'org.springframework.boot:spring-boot-starter-web'
Expand All @@ -277,7 +277,7 @@ dependencies {
implementation 'io.micrometer:micrometer-tracing'
implementation 'io.micrometer:micrometer-tracing-bridge-otel'
implementation 'io.micrometer:micrometer-registry-azure-monitor'
implementation 'com.azure:azure-monitor-opentelemetry-autoconfigure:1.3.0'
implementation 'com.azure:azure-monitor-opentelemetry-autoconfigure:1.4.0'

implementation 'net.logstash.logback:logstash-logback-encoder:8.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-to-slf4j', version: log4JVersion
Expand All @@ -299,7 +299,7 @@ dependencies {

testImplementation(platform('org.junit:junit-bom:5.13.4'))
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.5.5', {
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.5.6', {
exclude group: 'junit', module: 'junit'
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
Expand All @@ -312,7 +312,7 @@ dependencies {
// especially with platform BOMs, test runtime dependencies, or custom tasks. Explicit dependencies eliminate that risk.
integrationTestImplementation platform('org.junit:junit-bom:5.13.4')
integrationTestRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
integrationTestImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.5.5', {
integrationTestImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.5.6', {
exclude group: 'junit', module: 'junit'
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
Expand Down
Loading