Skip to content

Commit 0db4506

Browse files
authored
Don't move jar to local mvn repo (#579)
1 parent bc1cadc commit 0db4506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def install_java_libraries(dir):
1919
raise OSError(
2020
"Can not find the mvn (maven) binary. Make sure to install maven before building the jar."
2121
)
22-
command = [maven_command, "clean", "install", "-f", "pom.xml"]
22+
command = [maven_command, "clean", "package", "-f", "pom.xml"]
2323
subprocess.check_call(command, cwd=os.path.join(dir, "planner"))
2424

2525
# copy generated jar to python package

0 commit comments

Comments
 (0)