Skip to content

Commit be7e393

Browse files
authored
Merge branch 'master' into wuandy/FixNamedQueryResume
2 parents 0c69bd9 + 5cc1bf5 commit be7e393

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

buildSrc/build.gradle.kts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ ktfmt {
4040
googleStyle()
4141
}
4242

43+
java {
44+
sourceCompatibility = JavaVersion.VERSION_1_8
45+
targetCompatibility = JavaVersion.VERSION_1_8
46+
}
47+
4348
dependencies {
4449
// Firebase performance plugin, it should be added here because of how gradle dependency
4550
// resolution works, otherwise it breaks Fireperf Test Apps.
@@ -59,7 +64,7 @@ dependencies {
5964
implementation("org.eclipse.aether:aether-transport-http:1.0.0.v20140518")
6065
implementation("org.eclipse.aether:aether-transport-wagon:1.0.0.v20140518")
6166
implementation("org.apache.maven:maven-aether-provider:3.1.0")
62-
67+
6368
implementation("org.eclipse.jgit:org.eclipse.jgit:6.3.0.202209071007-r")
6469

6570
implementation("com.google.code.gson:gson:2.8.9")
@@ -110,9 +115,3 @@ tasks.withType<Test> {
110115
val enablePluginTests: String? by rootProject
111116
enabled = enablePluginTests == "true"
112117
}
113-
114-
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
115-
kotlinOptions {
116-
jvmTarget = "11"
117-
}
118-
}

0 commit comments

Comments
 (0)