Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spring cloud #2902

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ def versions = [
serviceAuthVersion : '5.2.0',
springBootVersion : '3.3.5',
springBootStarterHateoas : '3.3.5',
springCloud : '4.1.4',
springCloudStarterNetflixHystrix: '4.1.3',
springCloud : '4.1.5',
springCloudStarterNetflixHystrix: '4.1.4',
springDocOpenUi : '2.6.0',
springSecurityVersion : '6.4.1'
]
Expand All @@ -202,7 +202,7 @@ repositories {

dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2023.0.3"
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2023.0.4"
}
}

Expand All @@ -218,7 +218,6 @@ dependencies {
implementation group: 'com.github.hmcts', name: 'ccd-case-document-am-client', version: versions.documentClient
implementation group: 'io.github.openfeign', name: 'feign-jackson', version: '13.5'
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign', version: versions.springCloudStarterNetflixHystrix
implementation ('io.github.openfeign.form:feign-form-spring')

implementation group: 'com.google.guava', name: 'guava', version: '33.3.1-jre'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-hateoas', version: versions.springBootStarterHateoas
Expand Down Expand Up @@ -301,7 +300,6 @@ dependencies {
testFunctionalImplementation sourceSets.test.runtimeClasspath
testFunctionalAnnotationProcessor group:'org.projectlombok', name: 'lombok', version: versions.lombok
testFunctionalCompileOnly group:'org.projectlombok', name: 'lombok', version: versions.lombok
testFunctionalImplementation group: 'io.github.openfeign.form', name: 'feign-form-spring'

testCaseCreatorImplementation group: 'net.serenity-bdd', name: 'serenity-rest-assured', version: versions.serenity
testCaseCreatorImplementation group: 'net.serenity-bdd', name: 'serenity-core', version: versions.serenity
Expand Down
Loading