Skip to content

Commit 8269185

Browse files
committed
update dependencies
1 parent 913d0f0 commit 8269185

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

openapi-processor-core/build.gradle

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ plugins {
66
id 'maven-publish'
77
id 'signing'
88
id "org.sonarqube" version "3.3"
9-
id 'org.jetbrains.dokka' version '1.5.30'
10-
id 'org.jetbrains.kotlin.jvm' version '1.5.30'
9+
id 'org.jetbrains.dokka' version '1.5.31'
10+
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
1111
id 'org.unbroken-dome.test-sets' version '4.0.0'
1212
id 'com.github.ben-manes.versions' version '0.39.0'
1313
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
@@ -32,11 +32,8 @@ String getBuildSignKey(String property) {
3232

3333
ext {
3434
processorApiVersion = '2021.1'
35-
processorTestVersion = '2021.4'
36-
kotlinVersion = "1.5.30"
37-
jacksonVersion = '2.12.5'
35+
processorTestVersion = '2021.6-SNAPSHOT'
3836
groovyVersion = '3.0.9'
39-
junitVersion = '5.8.0'
4037

4138
publishUser = getBuildProperty ('PUBLISH_USER')
4239
publishKey = getBuildProperty ('PUBLISH_KEY')
@@ -108,29 +105,30 @@ dependencies {
108105
antlr 'org.antlr:antlr4:4.9.2'
109106

110107
compileOnly "io.openapiprocessor:openapi-processor-api:$processorApiVersion"
111-
implementation platform("org.jetbrains.kotlin:kotlin-bom:$kotlinVersion")
112-
implementation platform("com.fasterxml.jackson:jackson-bom:$jacksonVersion")
113-
implementation "com.fasterxml.jackson.module:jackson-module-kotlin"
108+
implementation platform("org.jetbrains.kotlin:kotlin-bom:1.5.31")
109+
implementation platform("com.fasterxml.jackson:jackson-bom:2.13.0")
114110

115111
implementation 'org.openapi4j:openapi-parser:1.0.7'
116-
implementation ('io.swagger.parser.v3:swagger-parser:2.0.27') {
112+
implementation ('io.swagger.parser.v3:swagger-parser:2.0.28') {
117113
exclude group: 'io.swagger.parser.v3', module: 'swagger-parser-v2-converter'
118114
exclude group: 'io.swagger.core.v3', module: 'swagger-annotations'
119115
}
120116

117+
implementation "com.fasterxml.jackson.module:jackson-module-kotlin"
121118
implementation ('org.apache.commons:commons-text:1.9')
122119
implementation ('com.atlassian.commonmark:commonmark:0.17.0')
123120
implementation ('com.google.googlejavaformat:google-java-format:1.11.0')
124-
implementation ('com.google.guava:guava:30.1.1-jre')
125-
implementation ('com.networknt:json-schema-validator:1.0.59')
121+
implementation ('com.google.guava:guava:31.0.1-jre')
122+
implementation ('com.networknt:json-schema-validator:1.0.61')
126123

127124
testImplementation "io.openapiprocessor:openapi-processor-api:$processorApiVersion"
128125
testImplementation ("io.openapiprocessor:openapi-processor-test:$processorTestVersion")
129126

130-
testImplementation ("org.codehaus.groovy:groovy:$groovyVersion")
131-
testImplementation ("org.codehaus.groovy:groovy-nio:$groovyVersion")
127+
testImplementation platform("org.codehaus.groovy:groovy-bom:3.0.9")
128+
testImplementation ("org.codehaus.groovy:groovy")
129+
testImplementation ("org.codehaus.groovy:groovy-nio")
132130
testImplementation ('org.spockframework:spock-core:2.0-groovy-3.0')
133-
testImplementation platform("org.junit:junit-bom:$junitVersion")
131+
testImplementation platform("org.junit:junit-bom:5.8.1")
134132
testImplementation ("org.junit.jupiter:junit-jupiter-api")
135133
testImplementation ("org.junit.jupiter:junit-jupiter-params")
136134
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine")

0 commit comments

Comments
 (0)