diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-29 11:34:14 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-29 11:34:14 +0100 |
commit | 81906f432607d2b042e925ea6fda54d7b753e713 (patch) | |
tree | 4cf48ff588903c32519f8c64a3e08586b24819c5 | |
parent | 0c82b7dbad96711ddfde45eed423206d8dad6d51 (diff) |
Various bug fixes.
-rw-r--r-- | build.xml | 1 | ||||
-rw-r--r-- | src/run.clj | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -56,6 +56,7 @@ </target> <target name="test" description="Run the unit tests." depends="compile"> + <mkdir dir="${test.dir}" /> <java classname="clojure.main" classpathref="project.classpath" fork="true" failonerror="true" dir="${test.dir}"> <classpath path="${test.dir}" /> <arg value="-e" /> diff --git a/src/run.clj b/src/run.clj index 2bc6c8e..3054d19 100644 --- a/src/run.clj +++ b/src/run.clj @@ -2,7 +2,7 @@ ;;; Copyright Robin Brandt, freiheit.com. (ns logikorr-jetty - (:use logikorr) + (:use logikorr.servlet) (:use compojure.server.jetty compojure.http compojure.control)) (defmacro with-app-engine |