Browse Source

Merge branch 'master' of https://github.com/shenfeng/FrameworkBenchmarks

Patrick Falls 12 years ago
parent
commit
24de0767dc
2 changed files with 2 additions and 1 deletions
  1. 1 1
      http-kit/hello/project.clj
  2. 1 0
      http-kit/setup.py

+ 1 - 1
http-kit/hello/project.clj

@@ -6,7 +6,7 @@
                  [ring/ring-json "0.2.0"]
                  [org.clojure/tools.cli "0.2.1"]
                  [http-kit/dbcp "0.1.0"]
-                 [http-kit "2.0.0"]
+                 [http-kit "2.0.1"]
                  [log4j "1.2.15" :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]]
                  [mysql/mysql-connector-java "5.1.6"]]
   :main hello.handler

+ 1 - 0
http-kit/setup.py

@@ -7,6 +7,7 @@ def start(args):
 
   try:
     subprocess.check_call("lein deps", shell=True, cwd="http-kit/hello")
+    subprocess.check_call("rm -rf target", shell=True, cwd="http-kit/hello")
     # pack all dependencies into a single jar: target/http-kit-standalone.jar
     subprocess.check_call("lein uberjar", shell=True, cwd="http-kit/hello")
     # -server is much faster