Skip to content

Commit

Permalink
chore: Upgrade JUnit Jupiter to 5.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Nov 21, 2024
1 parent 642a3aa commit 99740fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ dependencies {
testImplementation 'ch.qos.logback:logback-core:1.4.5'
testImplementation 'net.bytebuddy:byte-buddy:1.15.7'
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.34.0'
testImplementation 'org.junit.vintage:junit-vintage-engine:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testImplementation 'org.junit.vintage:junit-vintage-engine:5.11.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
}

// Align versions of all Kotlin components
Expand All @@ -85,7 +85,7 @@ testing {
// Configure the built-in test suite
test {
// Use JUnit Jupiter test framework
useJUnitJupiter('5.9.2')
useJUnitJupiter('5.11.3')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion consumer/junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group = 'au.com.dius.pact.consumer'

dependencies {
api project(":consumer")
api 'org.junit.jupiter:junit-jupiter-api:5.9.2'
api 'org.junit.jupiter:junit-jupiter-api:5.11.3'

implementation 'org.slf4j:slf4j-api'

Expand Down
2 changes: 1 addition & 1 deletion provider/junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
api project(':core:support')
api project(':core:pactbroker')
api project(':core:model')
api 'org.junit.jupiter:junit-jupiter-api:5.9.2'
api 'org.junit.jupiter:junit-jupiter-api:5.11.3'

implementation 'org.slf4j:slf4j-api'
implementation('io.pact.plugin.driver:core') {
Expand Down

0 comments on commit 99740fa

Please sign in to comment.