Skip to content

Commit

Permalink
chore: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed May 5, 2023
1 parent 1fafbf4 commit f5aff82
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencies {
api 'org.json:json:20230227'
api 'io.pact.plugin.driver:core:0.4.0'
api 'org.apache.tika:tika-core:2.7.0'
api 'io.github.microutils:kotlin-logging-jvm:3.0.4'

implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation 'org.apache.commons:commons-lang3:3.12.0'
Expand All @@ -50,6 +51,7 @@ dependencies {
implementation 'org.apache.groovy:groovy-json:4.0.11'
implementation 'io.pact.plugin.driver:core:0.4.0'
implementation 'commons-codec:commons-codec:1.15'
implementation 'io.github.microutils:kotlin-logging-jvm:3.0.4'

testImplementation 'org.apache.groovy:groovy:4.0.11'
testImplementation 'org.apache.groovy:groovy-json:4.0.11'
Expand All @@ -70,7 +72,7 @@ dependencies {
implementation platform('org.jetbrains.kotlin:kotlin-bom')

// Use the Kotlin JDK 8 standard library.
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation 'org.jetbrains.kotlin:kotlin-reflect'

codenarc('org.codenarc:CodeNarc:3.1.0-groovy-4.0')
Expand Down
4 changes: 2 additions & 2 deletions consumer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {
testImplementation 'org.apache.groovy:groovy-dateutil'
testRuntimeOnly 'net.bytebuddy:byte-buddy'
testRuntimeOnly 'org.objenesis:objenesis:3.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
testImplementation 'io.grpc:grpc-protobuf:1.43.2'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
testImplementation 'io.grpc:grpc-protobuf:1.51.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
}
8 changes: 4 additions & 4 deletions consumer/junit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ dependencies {
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'org.apache.commons:commons-collections4'
testImplementation 'org.junit.vintage:junit-vintage-engine'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
testImplementation('io.rest-assured:rest-assured:5.2.0') {
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
testImplementation('io.rest-assured:rest-assured:5.3.0') {
exclude group: 'org.apache.groovy'
}
testImplementation 'org.apache.groovy:groovy'
testImplementation 'org.apache.groovy:groovy-json'
testImplementation 'org.apache.groovy:groovy-xml'

// Required for Java 9
testImplementation 'javax.xml.bind:jaxb-api:2.3.0'
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'

testRuntimeOnly 'net.bytebuddy:byte-buddy'
testRuntimeOnly 'org.objenesis:objenesis:3.1'

testImplementation 'org.clojure:clojure:1.10.1', 'http-kit:http-kit:2.3.0'
testImplementation 'javax.xml.bind:jaxb-api:2.3.0'
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
testImplementation 'javax.activation:activation:1.1'
testImplementation 'org.glassfish.jaxb:jaxb-runtime:2.3.0'
}
Expand Down
8 changes: 4 additions & 4 deletions consumer/junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ dependencies {
testImplementation 'org.apache.groovy:groovy-json'
testImplementation 'org.apache.groovy:groovy-xml'
testImplementation 'org.apache.commons:commons-io:1.3.2'
testImplementation 'org.mockito:mockito-core:2.28.2'
testImplementation 'org.mockito:mockito-core:4.9.0'
testImplementation 'org.hamcrest:hamcrest'
testImplementation 'org.apache.httpcomponents.client5:httpclient5'
testImplementation('io.rest-assured:rest-assured:5.2.0') {
testImplementation('io.rest-assured:rest-assured:5.3.0') {
exclude group: 'org.apache.groovy'
}
testImplementation 'org.apache.commons:commons-collections4'

// JAX-B dependencies for JDK 9+
testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.2'
testImplementation 'org.glassfish.jaxb:jaxb-runtime:2.3.2'
testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3'
testImplementation 'org.glassfish.jaxb:jaxb-runtime:2.3.3'
}
2 changes: 1 addition & 1 deletion core/pactbroker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group = 'au.com.dius.pact.core'

dependencies {
api project(':core:support')
api 'io.github.microutils:kotlin-logging-jvm:2.1.23'
api 'io.github.microutils:kotlin-logging-jvm'
api 'org.apache.httpcomponents.client5:httpclient5'

implementation 'org.apache.commons:commons-lang3'
Expand Down
2 changes: 1 addition & 1 deletion core/support/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = 'Pact-JVM Support module with common utilities'
group = 'au.com.dius.pact.core'

dependencies {
api 'io.github.microutils:kotlin-logging-jvm:3.0.4'
api 'io.github.microutils:kotlin-logging-jvm'
api 'org.apache.httpcomponents.client5:httpclient5'
api 'org.apache.httpcomponents.client5:httpclient5-fluent'

Expand Down
2 changes: 1 addition & 1 deletion provider/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
testImplementation 'org.spockframework:spock-core'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'org.apache.groovy:groovy-json'
testImplementation 'org.mockito:mockito-core:2.28.2'
testImplementation 'org.mockito:mockito-core:4.9.0'
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
testImplementation 'junit:junit'
testImplementation 'io.dropwizard:dropwizard-testing:2.1.3'
Expand Down
2 changes: 1 addition & 1 deletion provider/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
implementation 'com.github.ajalt:mordant:1.2.1'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.apache.commons:commons-lang3'
implementation 'io.github.microutils:kotlin-logging-jvm:2.1.23'
implementation 'io.github.microutils:kotlin-logging-jvm'

testImplementation 'junit:junit'
testImplementation 'org.mockito:mockito-core:2.28.2'
Expand Down

0 comments on commit f5aff82

Please sign in to comment.