From 90d101601bf2e93a1ca64fbb41157bd9e19216b9 Mon Sep 17 00:00:00 2001 From: Kalle Jepsen Date: Wed, 15 Jun 2022 15:01:18 +0200 Subject: [PATCH] Don't move jar to local mvn repo --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index be50794e1..2756e5407 100755 --- a/setup.py +++ b/setup.py @@ -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