Skip to content

Commit

Permalink
release 1.4.0
Browse files Browse the repository at this point in the history
* update to java 17
  • Loading branch information
derveloper committed Feb 6, 2024
1 parent 6a9d29b commit fc2fd4d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ kotlin-openapi3-dsl is available on maven central
### gradle

```groovy
compile "cc.vileda:kotlin-openapi3-dsl:1.3.1"
compile "cc.vileda:kotlin-openapi3-dsl:1.4.0"
```

### maven
```xml
<dependency>
<groupId>cc.vileda</groupId>
<artifactId>kotlin-openapi3-dsl</artifactId>
<version>1.3.1</version>
<version>1.4.0</version>
</dependency>
```

Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

group 'cc.vileda'
version '1.3.1'
version '1.4.0'

repositories {
mavenCentral()
Expand Down Expand Up @@ -100,7 +100,7 @@ test {
}

dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.22'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.22'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "2.16.1"
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.16.1"
implementation 'com.fasterxml.jackson.module:jackson-module-jsonSchema:2.16.1'
Expand All @@ -113,16 +113,16 @@ dependencies {
}

compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "17"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "17"
}
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 17
targetCompatibility = 17
}
compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 17
targetCompatibility = 17
}

0 comments on commit fc2fd4d

Please sign in to comment.