Skip to content

Commit

Permalink
Updated Kotlin version for tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
renatoathaydes committed Aug 26, 2023
1 parent 8642374 commit 17a79cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
kotlinVersion=1.6.10
kotestVersion=4.6.2
kotlinVersion=1.9.10
kotestVersion=5.6.2
kotlin.stdlib.default.dependency=false
rawHttpCoreVersion=2.5.2
rawHttpCliVersion=1.5.2
Expand Down
3 changes: 3 additions & 0 deletions rawhttp-duplex/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ version rawHttpDuplexVersion
description 'rawhttp-duplex provides a mechanism for full duplex communications based on the ' +
'HTTP/1.1 chunked transfer-encoding.'

sourceCompatibility = 1.8
targetCompatibility = 1.8

compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}
Expand Down
3 changes: 3 additions & 0 deletions samples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ test {
enabled project.hasProperty('run-samples')
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}
Expand Down

0 comments on commit 17a79cd

Please sign in to comment.