Skip to content

Commit

Permalink
Fix version conflicts
Browse files Browse the repository at this point in the history
- Update pact provider version
- Update groovy library - required by pact (will this break the logback config?)
  • Loading branch information
samanehsan committed Jan 18, 2024
1 parent 75542bf commit 0ae774d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -306,16 +306,16 @@ dependencies {
exclude group: 'com.sun.jersey', module: 'jersey-server'
}

testImplementation 'au.com.dius.pact.provider:junit5:4.3.19'
testImplementation 'au.com.dius.pact.provider:junit5spring:4.3.19'
testImplementation 'au.com.dius.pact.provider:junit5:4.6.1'
testImplementation 'au.com.dius.pact.provider:junit5spring:4.6.1'
testImplementation 'au.com.dius.pact.consumer:junit5:4.6.1'

antlr "org.antlr:antlr4:4.8"
spotbugs 'com.github.spotbugs:spotbugs:4.2.3'

// Need groovy on the class path for the logback config. Could use XML and skip this dependency,
// but the groovy config is... well... groovy.
runtimeOnly group: 'org.codehaus.groovy', name: 'groovy', version: '3.0.7'
runtimeOnly group: 'org.apache.groovy', name: 'groovy', version: '4.0.11'

// Findbugs annotations, so we can selectively suppress findbugs findings
compileOnly 'com.google.code.findbugs:annotations:3.0.1'
Expand Down

0 comments on commit 0ae774d

Please sign in to comment.