Skip to content

Commit f12ff75

Browse files
committed
Compatible with Java 8
1 parent c7b6e6a commit f12ff75

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

compiler/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ repositories {
99
google()
1010
}
1111

12+
java {
13+
sourceCompatibility = JavaVersion.VERSION_1_8
14+
targetCompatibility = JavaVersion.VERSION_1_8
15+
}
16+
1217
dependencies {
1318
kapt("com.google.auto.service:auto-service:1.0")
1419
implementation("com.google.auto.service:auto-service:1.0")

mustache/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ repositories {
99
google()
1010
}
1111

12+
java {
13+
sourceCompatibility = JavaVersion.VERSION_1_8
14+
targetCompatibility = JavaVersion.VERSION_1_8
15+
}
16+
1217
dependencies {
1318
implementation(kotlin("bom"))
1419
implementation(kotlin("stdlib"))

velocity/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ repositories {
99
google()
1010
}
1111

12+
java {
13+
sourceCompatibility = JavaVersion.VERSION_1_8
14+
targetCompatibility = JavaVersion.VERSION_1_8
15+
}
16+
1217
dependencies {
1318
implementation(kotlin("bom"))
1419
implementation(kotlin("stdlib"))

0 commit comments

Comments
 (0)