bazel: remove jvm_flags hack

This commit is contained in:
Corentin Le Molgat
2023-12-18 13:59:59 +01:00
parent 17d7dc9fc0
commit 778f90ee9d
9 changed files with 0 additions and 52 deletions

View File

@@ -87,10 +87,6 @@ def code_sample_java(name):
srcs = [name + ".java"],
main_class = "com.google.ortools.graph.samples." + name,
test_class = "com.google.ortools.graph.samples." + name,
jvm_flags = select({
"@platforms//os:windows": ["-Djava.library.path=../../../../java/com/google/ortools"],
"//conditions:default": ["-Djava.library.path=ortools/java/com/google/ortools"],
}),
deps = [
"//ortools/graph/java:graph",
"//ortools/java/com/google/ortools:Loader",