Skip to content

Commit

Permalink
Don't move jar to local mvn repo (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksonj authored Jun 15, 2022
1 parent bc1cadc commit 0db4506
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 0db4506

Please sign in to comment.