Skip to content

Commit

Permalink
Remove test from source-paths for template
Browse files Browse the repository at this point in the history
This will allow a generated template to work out of the box (since no
test files are generated for that template).
  • Loading branch information
seancorfield committed Jul 17, 2016
1 parent 9cca685 commit d43853d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.boot
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(set-env! :resource-paths #{"src"})

(def version "0.4.4")
(def version "0.4.5")

(task-options!
pom {:project 'seancorfield/boot-new
Expand Down
3 changes: 2 additions & 1 deletion src/boot/new/template/build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
(def version "0.1.0-SNAPSHOT")

(set-env! :resource-paths #{"resources" "src"}
:source-paths #{"test"}
;; uncomment this if you write tests for your template:
;; :source-paths #{"test"}
:dependencies '[[org.clojure/clojure "RELEASE"]
[seancorfield/boot-new "RELEASE"]
[adzerk/boot-test "RELEASE" :scope "test"]])
Expand Down

0 comments on commit d43853d

Please sign in to comment.