reorganize source folders to allow for some java code to be added
This commit is contained in:
parent
1b5187f465
commit
45c6ba0d18
34
project.clj
34
project.clj
|
@ -1,6 +1,6 @@
|
||||||
(defproject toascii "0.1.0-SNAPSHOT"
|
(defproject toascii "0.1.0-SNAPSHOT"
|
||||||
:description "Web site and REST api for http://toascii.net/"
|
:description "Web site and REST api for http://toascii.net/"
|
||||||
:url "https://github.com/gered/toascii"
|
:url "https://github.com/gered/toascii"
|
||||||
:dependencies
|
:dependencies
|
||||||
[[org.clojure/clojure "1.6.0"]
|
[[org.clojure/clojure "1.6.0"]
|
||||||
[lib-noir "0.8.1"]
|
[lib-noir "0.8.1"]
|
||||||
|
@ -15,18 +15,20 @@
|
||||||
[clj-figlet "0.1.1"]
|
[clj-figlet "0.1.1"]
|
||||||
[com.cemerick/url "0.1.1"]
|
[com.cemerick/url "0.1.1"]
|
||||||
[criterium "0.4.3" :scope "test"]]
|
[criterium "0.4.3" :scope "test"]]
|
||||||
:main main
|
:source-paths ["src/clojure"]
|
||||||
:plugins [[lein-ring "0.8.10"]
|
:java-source-paths ["src/java"]
|
||||||
[lein-environ "0.4.0"]]
|
:main main
|
||||||
:ring {:handler toascii.handler/app
|
:plugins [[lein-ring "0.8.10"]
|
||||||
:init toascii.handler/init
|
[lein-environ "0.4.0"]]
|
||||||
:destroy toascii.handler/destroy}
|
:ring {:handler toascii.handler/app
|
||||||
:profiles {:uberjar {:aot :all}
|
:init toascii.handler/init
|
||||||
:production {:ring {:open-browser? false
|
:destroy toascii.handler/destroy}
|
||||||
:stacktraces? false
|
:profiles {:uberjar {:aot :all}
|
||||||
:auto-reload? false}}
|
:production {:ring {:open-browser? false
|
||||||
:repl {:source-paths ["dev"]}
|
:stacktraces? false
|
||||||
:dev {:env {:dev true}
|
:auto-reload? false}}
|
||||||
:dependencies [[ring-mock "0.1.5"]
|
:repl {:source-paths ["dev"]}
|
||||||
[ring/ring-devel "1.2.2"]]}}
|
:dev {:env {:dev true}
|
||||||
:min-lein-version "2.0.0")
|
:dependencies [[ring-mock "0.1.5"]
|
||||||
|
[ring/ring-devel "1.2.2"]]}}
|
||||||
|
:min-lein-version "2.0.0")
|
Reference in a new issue