File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 13
13
- Update required CommandAPI to 8.0.0+
14
14
- Update required Mimic to 0.8.0+
15
15
- Update Kotlin to 1.7.10
16
+ - Minimal Java version set to 11
16
17
17
18
## [ v0.1.2] (2022-01-07)
18
19
Original file line number Diff line number Diff line change @@ -7,18 +7,17 @@ plugins {
7
7
8
8
description = rootProject.description
9
9
10
- tasks.withType<JavaCompile >().configureEach {
11
- sourceCompatibility = " 1.8"
12
- targetCompatibility = " 1.8"
13
- options.encoding = " UTF-8"
10
+ java {
11
+ sourceCompatibility = JavaVersion .VERSION_11
12
+ targetCompatibility = JavaVersion .VERSION_11
14
13
}
15
14
16
15
tasks.withType<KotlinCompile >().configureEach {
17
16
kotlinOptions {
18
- jvmTarget = " 1.8 "
19
- apiVersion = " 1.6 "
20
- languageVersion = " 1.6 "
21
- freeCompilerArgs + = " -Xopt -in=kotlin.RequiresOptIn"
17
+ jvmTarget = " 11 "
18
+ apiVersion = " 1.7 "
19
+ languageVersion = " 1.7 "
20
+ freeCompilerArgs + = " -opt -in=kotlin.RequiresOptIn"
22
21
}
23
22
}
24
23
You can’t perform that action at this time.
0 commit comments