Ver código fonte

Fix the build so it no longer double-shades. This removes all the warnings it printed.

Chris Vest 12 anos atrás
pai
commit
08fbfa4912
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      grizzly-jersey/setup.py

+ 1 - 1
grizzly-jersey/setup.py

@@ -5,7 +5,7 @@ import os
 
 def start(args):
   try:
-    subprocess.check_call("mvn clean package shade:shade", shell=True, cwd="grizzly-jersey")
+    subprocess.check_call("mvn clean package", shell=True, cwd="grizzly-jersey")
     subprocess.Popen("java -jar target/grizzly-jersey-example-0.1.jar".rsplit(" "), cwd="grizzly-jersey")
     return 0
   except subprocess.CalledProcessError: