Add doclet

This commit is contained in:
oakes
2014-03-30 20:24:04 -04:00
parent b31414467c
commit 26e87e10e9
5 changed files with 253 additions and 0 deletions

7
doclet/project.clj Normal file
View File

@@ -0,0 +1,7 @@
(defproject play-clj-doclet "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.6.0"]]
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:aot :all)