File tree 2 files changed +10
-10
lines changed 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ kotlin-openapi3-dsl is available on maven central
12
12
### gradle
13
13
14
14
``` groovy
15
- compile "cc.vileda:kotlin-openapi3-dsl:1.3.1 "
15
+ compile "cc.vileda:kotlin-openapi3-dsl:1.4.0 "
16
16
```
17
17
18
18
### maven
19
19
``` xml
20
20
<dependency >
21
21
<groupId >cc.vileda</groupId >
22
22
<artifactId >kotlin-openapi3-dsl</artifactId >
23
- <version >1.3.1 </version >
23
+ <version >1.4.0 </version >
24
24
</dependency >
25
25
```
26
26
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ apply plugin: 'maven-publish'
16
16
apply plugin : ' signing'
17
17
18
18
group ' cc.vileda'
19
- version ' 1.3.1 '
19
+ version ' 1.4.0 '
20
20
21
21
repositories {
22
22
mavenCentral()
@@ -100,7 +100,7 @@ test {
100
100
}
101
101
102
102
dependencies {
103
- implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk8 :1.9.22'
103
+ implementation ' org.jetbrains.kotlin:kotlin-stdlib:1.9.22'
104
104
implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-core' , version : " 2.16.1"
105
105
implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : " 2.16.1"
106
106
implementation ' com.fasterxml.jackson.module:jackson-module-jsonSchema:2.16.1'
@@ -113,16 +113,16 @@ dependencies {
113
113
}
114
114
115
115
compileKotlin {
116
- kotlinOptions. jvmTarget = " 1.8 "
116
+ kotlinOptions. jvmTarget = " 17 "
117
117
}
118
118
compileTestKotlin {
119
- kotlinOptions. jvmTarget = " 1.8 "
119
+ kotlinOptions. jvmTarget = " 17 "
120
120
}
121
121
compileJava {
122
- sourceCompatibility = 1.8
123
- targetCompatibility = 1.8
122
+ sourceCompatibility = 17
123
+ targetCompatibility = 17
124
124
}
125
125
compileTestJava {
126
- sourceCompatibility = 1.8
127
- targetCompatibility = 1.8
126
+ sourceCompatibility = 17
127
+ targetCompatibility = 17
128
128
}
You can’t perform that action at this time.
0 commit comments