Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def install_java_libraries(dir):
raise OSError(
"Can not find the mvn (maven) binary. Make sure to install maven before building the jar."
)
command = [maven_command, "clean", "install", "-f", "pom.xml"]
command = [maven_command, "clean", "package", "-f", "pom.xml"]
subprocess.check_call(command, cwd=os.path.join(dir, "planner"))

# copy generated jar to python package
Expand Down