Skip to content

Commit

Permalink
ci: fix jvm vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Jul 3, 2024
1 parent c77306f commit 87abc0c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions extract-core/tika-native/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,10 @@ dependencies {

// We use java BellSoft 22 build because it supports awt on macos.
def graalVmVersion = "22"
def graalVmVendor = if (OperatingSystem.current().isMacOsX) {
"BellSoft"
} else {
//"Oracle Corporation"
"GraalVM Community"
def graalVmVendor = "GraalVM Community"
//def graalVmVendor = "Oracle Corporation"
if (org.gradle.internal.os.OperatingSystem.current().isMacOsX()) {
graalVmVendor = "BellSoft"
}

graalvmNative {
Expand Down

0 comments on commit 87abc0c

Please sign in to comment.