diff --git a/src/boot_build.clj b/src/boot_build.clj deleted file mode 100644 index 57e2a6d..0000000 --- a/src/boot_build.clj +++ /dev/null @@ -1,12 +0,0 @@ -(ns demo.boot-build - (:require [boot.core :as core] - [boot.task.built-in :as task])) - -(core/deftask build - "Build my project." - [] - (comp (task/pom) (task/jar) (task/install))) - -(core/deftask hello - [] - (println "hello"))