Skip to content

Commit

Permalink
[Kotlin] Add java source on benchmark module instead of using version…
Browse files Browse the repository at this point in the history
… jar (google#7978)

By using specific jar version to use java's runtime on the benchmark
module we let CI break when new versions are released. So we are using
source directly instead
  • Loading branch information
paulovap committed May 26, 2023
1 parent 96294e9 commit 6e214c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlin/benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ kotlin {
implementation(kotlin("stdlib-common"))
implementation(project(":flatbuffers-kotlin"))
implementation(libs.kotlinx.benchmark.runtime)
implementation("com.google.flatbuffers:flatbuffers-java:23.5.9")
// json serializers
implementation(libs.moshi.kotlin)
implementation(libs.gson)
}
kotlin.srcDir("src/jvmMain/generated/kotlin/")
kotlin.srcDir("src/jvmMain/generated/java/")
kotlin.srcDir("../../java/src/main/java")
}
}
}
Expand Down

0 comments on commit 6e214c3

Please sign in to comment.