Skip to content

Commit 83dcddd

Browse files
committed
update dependencies
1 parent 248d3dd commit 83dcddd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ plugins {
44
id 'java-library'
55
id 'maven-publish'
66
id "org.sonarqube" version "3.0"
7-
id 'org.jetbrains.dokka' version '1.4.10'
8-
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
7+
id 'org.jetbrains.dokka' version '1.4.10.2'
8+
id 'org.jetbrains.kotlin.jvm' version '1.4.20'
99
id 'org.unbroken-dome.test-sets' version '3.0.1'
10-
id "com.github.ben-manes.versions" version "0.33.0"
10+
id "com.github.ben-manes.versions" version "0.36.0"
1111
}
1212

1313
group projectGroupId
@@ -20,8 +20,8 @@ java {
2020

2121

2222
ext {
23-
processorApiVersion = '1.1.0'
24-
jacksonVersion = '2.11.3'
23+
processorApiVersion = '1.2.0'
24+
jacksonVersion = '2.12.0'
2525

2626
bintrayUser = project.findProperty ('BINTRAY_USER') ?: System.getenv ("BINTRAY_USER") ?: 'n/a'
2727
bintrayKey = project.findProperty ('BINTRAY_KEY') ?: System.getenv ("BINTRAY_KEY") ?: 'n/a'
@@ -91,13 +91,13 @@ dependencies {
9191
components.all(KotlinPlatformRule)
9292

9393
compileOnly "io.openapiprocessor:openapi-processor-api:$processorApiVersion"
94-
implementation 'io.openapiprocessor:openapi-processor-core:1.3.0'
94+
implementation 'io.openapiprocessor:openapi-processor-core:2020.4-SNAPSHOT'
9595

9696
implementation 'org.slf4j:slf4j-api:1.7.30'
9797

9898
testImplementation ("io.openapiprocessor:openapi-processor-api:$processorApiVersion")
9999

100-
testImplementation ('io.openapiprocessor:openapi-processor-test:1.0.1') {
100+
testImplementation ('io.openapiprocessor:openapi-processor-test:2020.1.0') {
101101
exclude group: 'com.google.guava'
102102
}
103103

@@ -116,8 +116,8 @@ dependencies {
116116
exclude group: 'org.codehaus.groovy' // avoid unused groovy packages
117117
}
118118
testImplementation("io.mockk:mockk:1.10.2")
119-
testImplementation("io.kotest:kotest-runner-junit5:4.2.5")
120-
testImplementation 'net.bytebuddy:byte-buddy:1.10.16'
119+
testImplementation("io.kotest:kotest-runner-junit5:4.3.1")
120+
testImplementation 'net.bytebuddy:byte-buddy:1.10.18'
121121
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
122122

123123
constraints {

0 commit comments

Comments
 (0)