|
1 | 1 | buildscript {
|
2 |
| - ext.kotlin_version = '1.5.20' |
3 |
| - ext.jackson_version = '2.12.3' |
4 |
| - |
5 | 2 | repositories {
|
6 | 3 | mavenCentral()
|
7 | 4 | }
|
8 | 5 | dependencies {
|
9 |
| - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
| 6 | + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10" |
10 | 7 | }
|
11 | 8 | }
|
12 | 9 |
|
@@ -37,7 +34,7 @@ def pomConfig = {
|
37 | 34 | developer {
|
38 | 35 | id "derveloper"
|
39 | 36 | name "Tristan Leo"
|
40 |
| - |
| 37 | + |
41 | 38 | }
|
42 | 39 | }
|
43 | 40 |
|
@@ -117,14 +114,14 @@ test {
|
117 | 114 | }
|
118 | 115 |
|
119 | 116 | dependencies {
|
120 |
| - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" |
121 |
| - implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "$jackson_version" |
122 |
| - implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "$jackson_version" |
123 |
| - implementation "com.fasterxml.jackson.module:jackson-module-jsonSchema:$jackson_version" |
124 |
| - implementation "com.fasterxml.jackson.datatype:jackson-datatype-json-org:$jackson_version" |
| 117 | + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21' |
| 118 | + implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "2.12.3" |
| 119 | + implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.12.3" |
| 120 | + implementation 'com.fasterxml.jackson.module:jackson-module-jsonSchema:2.13.3' |
| 121 | + implementation 'com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.13.3' |
125 | 122 | api 'io.swagger.core.v3:swagger-core:2.2.0'
|
126 | 123 | api 'io.swagger.parser.v3:swagger-parser:2.0.32'
|
127 |
| - implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" |
| 124 | + implementation 'org.jetbrains.kotlin:kotlin-reflect:1.6.21' |
128 | 125 | testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.4.2'
|
129 | 126 | testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.36'
|
130 | 127 | }
|
|
0 commit comments