Skip to content

Commit 5c6ca22

Browse files
committed
release 1.4.0
* update to java 17
1 parent 6a9d29b commit 5c6ca22

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: 'maven-publish'
1616
apply plugin: 'signing'
1717

1818
group 'cc.vileda'
19-
version '1.3.1'
19+
version '1.4.0'
2020

2121
repositories {
2222
mavenCentral()
@@ -100,7 +100,7 @@ test {
100100
}
101101

102102
dependencies {
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

115115
compileKotlin {
116-
kotlinOptions.jvmTarget = "1.8"
116+
kotlinOptions.jvmTarget = "17"
117117
}
118118
compileTestKotlin {
119-
kotlinOptions.jvmTarget = "1.8"
119+
kotlinOptions.jvmTarget = "17"
120120
}
121121
compileJava {
122-
sourceCompatibility = 1.8
123-
targetCompatibility = 1.8
122+
sourceCompatibility = 17
123+
targetCompatibility = 17
124124
}
125125
compileTestJava {
126-
sourceCompatibility = 1.8
127-
targetCompatibility = 1.8
126+
sourceCompatibility = 17
127+
targetCompatibility = 17
128128
}

0 commit comments

Comments
 (0)