Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: derveloper <[email protected]>
  • Loading branch information
derveloper committed May 20, 2022
1 parent 61aa6ee commit bc86bd5
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
buildscript {
ext.kotlin_version = '1.5.20'
ext.jackson_version = '2.12.3'

repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
}
}

Expand Down Expand Up @@ -37,7 +34,7 @@ def pomConfig = {
developer {
id "derveloper"
name "Tristan Leo"
email "[email protected]"
email "[email protected]"
}
}

Expand Down Expand Up @@ -117,14 +114,14 @@ test {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "$jackson_version"
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "$jackson_version"
implementation "com.fasterxml.jackson.module:jackson-module-jsonSchema:$jackson_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-json-org:$jackson_version"
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "2.12.3"
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.12.3"
implementation 'com.fasterxml.jackson.module:jackson-module-jsonSchema:2.13.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.13.3'
api 'io.swagger.core.v3:swagger-core:2.2.0'
api 'io.swagger.parser.v3:swagger-parser:2.0.32'
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.6.21'
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.4.2'
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.36'
}
Expand Down

0 comments on commit bc86bd5

Please sign in to comment.