Skip to content

Commit 845fcc8

Browse files
authored
Merge pull request #19 from GetStream/fix/jvm-1.8
Define java version to 1.8 for stream-log and file modules
2 parents c0dfcbe + 1b88971 commit 845fcc8

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

stream-log-file/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ rootProject.extra.apply {
1313

1414
apply(from = "$rootDir/scripts/publish-module.gradle")
1515

16+
java {
17+
sourceCompatibility = JavaVersion.VERSION_1_8
18+
targetCompatibility = JavaVersion.VERSION_1_8
19+
}
20+
1621
dependencies {
1722
testImplementation(Dependencies.junit4)
1823
detektPlugins(Dependencies.detektFormatting)

stream-log/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ rootProject.extra.apply {
1313

1414
apply(from = "$rootDir/scripts/publish-module.gradle")
1515

16+
java {
17+
sourceCompatibility = JavaVersion.VERSION_1_8
18+
targetCompatibility = JavaVersion.VERSION_1_8
19+
}
20+
1621
dependencies {
1722
testImplementation(Dependencies.junit4)
1823
detektPlugins(Dependencies.detektFormatting)

0 commit comments

Comments
 (0)