Skip to content

Commit

Permalink
chore: Minor dependency upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jul 28, 2023
1 parent a73b2f4 commit 56dc42d
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 27 deletions.
26 changes: 13 additions & 13 deletions core/model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,29 @@ dependencies {
api project(path: ":core:support", configuration: 'default')
api project(path: ":core:pactbroker", configuration: 'default')
compile 'com.github.zafarkhaja:java-semver:0.9.0'
compile 'org.apache.commons:commons-collections4:4.1'
compile 'org.apache.commons:commons-collections4:4.4'
compile 'com.github.mifmif:generex:1.0.2'
compile 'javax.mail:mail:1.5.0-b01'
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
implementation 'org.apache.tika:tika-core:1.27'
implementation 'org.apache.tika:tika-core:1.28.5'
implementation 'io.ktor:ktor-http-jvm:1.3.1'

testCompile "ch.qos.logback:logback-classic:${project.logbackVersion}"
testCompile "io.github.http-builder-ng:http-builder-ng-apache:${project.httpBuilderVersion}"
testImplementation "ch.qos.logback:logback-classic:${project.logbackVersion}"
testImplementation "io.github.http-builder-ng:http-builder-ng-apache:${project.httpBuilderVersion}"
testRuntime project(path: project.path, configuration: 'testJars')
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile "org.codehaus.groovy:groovy-datetime:${project.groovyVersion}"
testCompile "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testImplementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
testImplementation "org.codehaus.groovy:groovy-datetime:${project.groovyVersion}"
testImplementation "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.3.2'
testCompile('org.spockframework:spock-core:2.0-groovy-3.0') {
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.4.2'
testImplementation('org.spockframework:spock-core:2.3-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testCompile "junit:junit:${project.junitVersion}"
testCompile 'org.hamcrest:hamcrest:2.1'
testCompile 'com.amazonaws:aws-java-sdk-s3:1.11.587'
testCompile "com.google.code.gson:gson:${project.gsonVersion}"
testImplementation "junit:junit:${project.junitVersion}"
testImplementation 'org.hamcrest:hamcrest:2.2'
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.11.587'
testImplementation "com.google.code.gson:gson:${project.gsonVersion}"
}

compileGroovy {
Expand Down
10 changes: 5 additions & 5 deletions core/pactbroker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
compile "org.apache.commons:commons-lang3:$commonsLang3Version"
compile "com.google.guava:guava:${project.guavaVersion}"
compile('io.github.microutils:kotlin-logging:1.6.26') {
compile("io.github.microutils:kotlin-logging:${project.kotlinLogging}") {
exclude group: 'org.jetbrains.kotlin'
}
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
Expand All @@ -12,10 +12,10 @@ dependencies {
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testRuntime "org.junit.jupiter:junit-jupiter-engine:${project.junit5Version}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
testCompile "ch.qos.logback:logback-classic:${project.logbackVersion}"
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testCompile('org.spockframework:spock-core:2.0-groovy-3.0') {
testImplementation "ch.qos.logback:logback-classic:${project.logbackVersion}"
testImplementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
testImplementation "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testImplementation('org.spockframework:spock-core:2.3-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testRuntime "net.bytebuddy:byte-buddy:${project.bytebuddyVersion}"
Expand Down
13 changes: 7 additions & 6 deletions core/support/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,24 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
implementation "com.google.code.findbugs:jsr305:3.0.2"
api('io.github.microutils:kotlin-logging:1.6.26') {
api "org.slf4j:slf4j-api:${project.slf4jVersion}"
api("io.github.microutils:kotlin-logging:${project.kotlinLogging}") {
exclude group: 'org.jetbrains.kotlin'
}
api "org.apache.httpcomponents:httpclient:${project.httpClientVersion}"
implementation "org.apache.httpcomponents:fluent-hc:${project.httpClientVersion}"
api 'com.michael-bull.kotlin-result:kotlin-result:1.1.6'

testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
testImplementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
testRuntime "org.junit.jupiter:junit-jupiter-engine:${project.junit5Version}"
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.3.2'
testCompile 'org.hamcrest:hamcrest:2.1'
testCompile('org.spockframework:spock-core:2.0-groovy-3.0') {
testImplementation 'org.hamcrest:hamcrest:2.1'
testImplementation('org.spockframework:spock-core:2.3-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testCompile "junit:junit:${project.junitVersion}"
testImplementation "junit:junit:${project.junitVersion}"

antlr "org.antlr:antlr4:4.7.2"
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ groovy2Version=2.5.22
kotlinVersion=1.3.72
httpBuilderVersion=1.0.4
commonsLang3Version=3.12.0
httpClientVersion=4.5.13
httpClientVersion=4.5.14
scalaVersion=2.13.2
specs2Version=4.9.4
scalaTestVersion=3.1.2
slf4jVersion=1.7.32
slf4jVersion=1.7.36
logbackVersion=1.2.5
junitVersion=4.13.2
jsonVersion=20220924
Expand All @@ -17,5 +17,5 @@ guavaVersion=30.1.1-jre
junit5Version=5.7.2
gsonVersion=2.8.6
bytebuddyVersion=1.10.8
kotlinLogging=2.0.10
kotlinLogging=1.12.5
kotlinResult=1.1.16

0 comments on commit 56dc42d

Please sign in to comment.