Skip to content

Commit 4d2389c

Browse files
committed
targetCompatibility = JavaVersion.VERSION_1_8
1 parent f399609 commit 4d2389c

File tree

5 files changed

+27
-2
lines changed

5 files changed

+27
-2
lines changed

.idea/compiler.xml

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ plugins {
22
kotlin
33
}
44

5+
java {
6+
sourceCompatibility = JavaVersion.VERSION_1_8
7+
targetCompatibility = JavaVersion.VERSION_1_8
8+
}
9+
510
dependencies {
611
implementation(deps.coroutines.core)
712
addUnitTest()

domain/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ plugins {
22
kotlin
33
}
44

5+
java {
6+
sourceCompatibility = JavaVersion.VERSION_1_8
7+
targetCompatibility = JavaVersion.VERSION_1_8
8+
}
9+
510
dependencies {
611
implementation(deps.coroutines.core)
712
implementation(deps.koin.core)

test-utils/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ plugins {
22
kotlin
33
}
44

5+
java {
6+
sourceCompatibility = JavaVersion.VERSION_1_8
7+
targetCompatibility = JavaVersion.VERSION_1_8
8+
}
9+
510
dependencies {
611
implementation(deps.coroutines.core)
712
implementation(core)

0 commit comments

Comments
 (0)