Skip to content

Commit

Permalink
attempt to fix windows builds
Browse files Browse the repository at this point in the history
Signed-off-by: Subhobrata Dey <[email protected]>
  • Loading branch information
sbcd90 committed May 31, 2024
1 parent 629a0c3 commit f48253c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions spi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'jacoco'
apply plugin: 'com.github.johnrengelman.shadow'

jacoco {
toolVersion = '0.8.7'
reportsDirectory = file("$buildDir/JacocoReport")
}

jacocoTestReport {
reports {
xml.required = false
csv.required = false
html.destination file("${buildDir}/jacoco/")
}
}
check.dependsOn jacocoTestReport

dependencies {
compileOnly "org.opensearch:opensearch:${opensearch_version}"
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
Expand Down

0 comments on commit f48253c

Please sign in to comment.