File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 3131 strategy :
3232 fail-fast : false
3333 matrix :
34- java_version : [8, 11 ]
34+ java_version : [11, 17 ]
3535 os : [windows-latest, macOS-latest, ubuntu-latest]
3636 distribution : [ adopt ]
3737 steps :
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ This module provides a new `TableSchema` implementation that adds support for ko
1919
2020Follow the instructions on Jitpack.
2121
22+ ## Requirements
23+
24+ Minimum Java 8. However, only 11 and 17 are officially supported.
25+
2226## Quickstart
2327
2428``` kotlin
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ repositories {
1010 maven { url = uri(" https://jitpack.io" ) }
1111}
1212
13+ kotlin {
14+ jvmToolchain(8 )
15+ }
16+
1317dependencies {
1418 implementation(kotlin(" stdlib" ))
1519 implementation(kotlin(" reflect" ))
@@ -43,4 +47,4 @@ publishing {
4347 from(components[" kotlin" ])
4448 }
4549 }
46- }
50+ }
You can’t perform that action at this time.
0 commit comments