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 junit5 monorepo #2931

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def versions = [
springBoot : springBootVersion,
restAssuredVersion: '4.2.0',
jackson : '2.17.0',
junit : '5.10.1',
junitPlatform : '1.10.2',
junit : '5.10.3',
junitPlatform : '1.10.3',
pact_version : '4.1.7',
serviceAuthVersion : '4.0.3',
idamJavaClient : '2.0.1',
Expand Down Expand Up @@ -330,10 +330,10 @@ dependencies {
contractTestImplementation group: 'au.com.dius.pact.provider', name: 'junit5', version: versions.pact_version
contractTestImplementation group: 'au.com.dius.pact.provider', name: 'spring', version: versions.pact_version
contractTestImplementation group: 'au.com.dius.pact.provider', name: 'junit5spring', version: versions.pact_version
contractTestImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
contractTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.0")
contractTestImplementation('org.junit.jupiter:junit-jupiter-api:5.7.0')
contractTestRuntimeOnly "org.junit.platform:junit-platform-commons:1.7.0"
contractTestImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3")
contractTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.3")
contractTestImplementation('org.junit.jupiter:junit-jupiter-api:5.10.3')
contractTestRuntimeOnly "org.junit.platform:junit-platform-commons:1.10.3"
contractTestImplementation group: 'com.github.hmcts', name: 'idam-java-client', version: versions.idamJavaClient
contractTestImplementation group: 'com.github.hmcts', name: 'service-auth-provider-java-client', version: versions.serviceAuthVersion
contractTestImplementation group: 'org.projectlombok', name: 'lombok', version: versions.lombok
Expand Down
2 changes: 1 addition & 1 deletion ccd-adapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.26'

testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.3'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.25.3'
testImplementation project(':domain-sample-data')
testImplementation project(':ccd-sample-data')
Expand Down
8 changes: 4 additions & 4 deletions domain-model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ dependencies {
testImplementation group: 'org.glassfish.web', name: 'javax.el', version: '2.2.6'
testImplementation group: 'com.google.guava', name: 'guava', version: '32.0.1-jre'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.8.0'
testImplementation group: 'org.junit.jupiter', name:'junit-jupiter-params', version:'5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.3'
testImplementation group: 'org.junit.platform', name: 'junit-platform-commons', version: '1.10.2'
testImplementation group: 'org.junit.jupiter', name:'junit-jupiter-params', version:'5.10.3'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.3'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.10.3'
testImplementation group: 'org.junit.platform', name: 'junit-platform-commons', version: '1.10.3'

}

Expand Down
2 changes: 1 addition & 1 deletion email-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ dependencies {
testImplementation group: 'commons-io', name: 'commons-io', version: '2.11.0'

testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.11.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.3'
}

2 changes: 1 addition & 1 deletion job-scheduler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ dependencies {
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.25.3'

testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.3'
}
2 changes: 1 addition & 1 deletion rpa-mapper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ dependencies {
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.25.3'
testImplementation project(':domain-sample-data')
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.3'
}
Loading