File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 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
1212### gradle
1313
1414``` groovy
15- compile "cc.vileda:kotlin-openapi3-dsl:1.3.1 "
15+ compile "cc.vileda:kotlin-openapi3-dsl:1.4.0 "
1616```
1717
1818### maven
1919``` xml
2020<dependency >
2121 <groupId >cc.vileda</groupId >
2222 <artifactId >kotlin-openapi3-dsl</artifactId >
23- <version >1.3.1 </version >
23+ <version >1.4.0 </version >
2424</dependency >
2525```
2626
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ apply plugin: 'maven-publish'
1616apply plugin : ' signing'
1717
1818group ' cc.vileda'
19- version ' 1.3.1 '
19+ version ' 1.4.0 '
2020
2121repositories {
2222 mavenCentral()
@@ -100,7 +100,7 @@ test {
100100}
101101
102102dependencies {
103- implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk8 :1.9.22'
103+ implementation ' org.jetbrains.kotlin:kotlin-stdlib:1.9.22'
104104 implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-core' , version : " 2.16.1"
105105 implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : " 2.16.1"
106106 implementation ' com.fasterxml.jackson.module:jackson-module-jsonSchema:2.16.1'
@@ -113,16 +113,16 @@ dependencies {
113113}
114114
115115compileKotlin {
116- kotlinOptions. jvmTarget = " 1.8 "
116+ kotlinOptions. jvmTarget = " 17 "
117117}
118118compileTestKotlin {
119- kotlinOptions. jvmTarget = " 1.8 "
119+ kotlinOptions. jvmTarget = " 17 "
120120}
121121compileJava {
122- sourceCompatibility = 1.8
123- targetCompatibility = 1.8
122+ sourceCompatibility = 17
123+ targetCompatibility = 17
124124}
125125compileTestJava {
126- sourceCompatibility = 1.8
127- targetCompatibility = 1.8
126+ sourceCompatibility = 17
127+ targetCompatibility = 17
128128}
You can’t perform that action at this time.
0 commit comments