use new cryo-core
This commit is contained in:
parent
62226fdfee
commit
35d3a52037
2 changed files with 15 additions and 9 deletions
|
@ -1,7 +1,2 @@
|
||||||
# bootstrap-io
|
# cryogen-bootstrap
|
||||||
|
|
||||||
## init submodule
|
|
||||||
```
|
|
||||||
git submodule add git@github.com:DomainDrivenArchitecture/cryogen-bootstrap.git
|
|
||||||
ln -s `(pwd)`/cryogen-bootstrap/themes ./resources/templates
|
|
||||||
```
|
|
||||||
|
|
17
project.clj
17
project.clj
|
@ -3,13 +3,24 @@
|
||||||
:url "https://domaindrivenarchitecture.org"
|
:url "https://domaindrivenarchitecture.org"
|
||||||
:license {:name "Apache License, Version 2.0"
|
:license {:name "Apache License, Version 2.0"
|
||||||
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
|
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
|
||||||
:dependencies [[org.clojure/clojure "1.9.0"]
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
||||||
[ring/ring-devel "1.7.1"]
|
[ring/ring-devel "1.7.1"]
|
||||||
[compojure "1.6.1"]
|
[compojure "1.6.1"]
|
||||||
[ring-server "0.5.0"]
|
[ring-server "0.5.0"]
|
||||||
[dda/cryogen-core "0.1.53"]
|
[dda/cryogen-core "0.2.0-SNAPSHOT"]
|
||||||
[dda/cryogen-markdown "0.1.6"]]
|
[dda/cryogen-markdown "0.1.6"]]
|
||||||
:repositories [["snapshots" :clojars]
|
:repositories [["snapshots" :clojars]
|
||||||
["releases" :clojars]]
|
["releases" :clojars]]
|
||||||
:deploy-repositories [["snapshots" :clojars]
|
:deploy-repositories [["snapshots" :clojars]
|
||||||
["releases" :clojars]])
|
["releases" :clojars]]
|
||||||
|
:source-paths ["src"]
|
||||||
|
:resource-paths ["resources"]
|
||||||
|
:profiles {:dev {:source-paths ["test"]
|
||||||
|
:resource-paths ["test-resources"]
|
||||||
|
:dependencies []
|
||||||
|
:leiningen/reply
|
||||||
|
{:dependencies [[org.slf4j/jcl-over-slf4j "1.8.0-beta0"]]
|
||||||
|
:exclusions [commons-logging]}}
|
||||||
|
:test {:source-paths ["test"]
|
||||||
|
:resource-paths ["test-resources"]
|
||||||
|
:dependencies []}})
|
||||||
|
|
Loading…
Reference in a new issue