Permalink
Please sign in to comment.
Showing
with
70 additions
and 21 deletions.
- +2 −2 .gitignore
- +21 −0 modules/kekkonen-core/project.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/api.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/client/cqrs.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/common.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/core.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/cqrs.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/http.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/impl/logging.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/interceptor.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/middleware.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/ring.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/swagger.clj
- 0 { → modules/kekkonen-core}/src/kekkonen/upload.clj
- +8 −0 modules/kekkonen/project.clj
- +23 −19 project.clj
- +8 −0 scripts/lein-modules
- +8 −0 scripts/set-version
@@ -0,0 +1,21 @@ | |||
(defproject metosin/kekkonen-core "0.5.0-SNAPSHOT" | |||
:description "A lightweight, remote api library for Clojure." | |||
:url "https://github.com/metosin/kekkonen" | |||
:license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} | |||
:plugins [[lein-parent "0.3.4"]] | |||
:parent-project {:path "../../project.clj" | |||
:inherit [:deploy-repositories :managed-dependencies]} | |||
:dependencies [[prismatic/plumbing] | |||
[prismatic/schema] | |||
[frankiesardo/linked] | |||
|
|||
;; http-stuff, separate module? | |||
[metosin/ring-swagger] | |||
[metosin/ring-swagger-ui] | |||
[metosin/ring-http-response] | |||
[ring-middleware-format] | |||
[metosin/muuntaja] | |||
[ring/ring-defaults] | |||
|
|||
;; client stuff, separate module? | |||
[clj-http]]) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -0,0 +1,8 @@ | |||
(defproject metosin/kekkonen "0.5.0-SNAPSHOT" | |||
:description "A lightweight, remote api library for Clojure." | |||
:url "https://github.com/metosin/kekkonen" | |||
:license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} | |||
:plugins [[lein-parent "0.3.4"]] | |||
:parent-project {:path "../../project.clj" | |||
:inherit [:deploy-repositories :managed-dependencies]} | |||
:dependencies [[metosin/kekkonen-core]]) |
@@ -0,0 +1,8 @@ | |||
#!/bin/bash | |||
|
|||
set -e | |||
|
|||
# Modules | |||
for ext in kekkonen-core kekkonen; do | |||
cd modules/$ext; lein "$@"; cd ../..; | |||
done |
@@ -0,0 +1,8 @@ | |||
#!/bin/zsh | |||
|
|||
ext="sedbak$$" | |||
|
|||
find . -name project.clj -exec sed -i.$ext "s/\[metosin\/kekkonen\(.*\) \".*\"\]/[metosin\/kekkonen\1 \"$1\"\]/g" '{}' \; | |||
find . -name project.clj -exec sed -i.$ext "s/defproject metosin\/kekkonen\(.*\) \".*\"/defproject metosin\/kekkonen\1 \"$1\"/g" '{}' \; | |||
sed -i.$ext "s/\[metosin\/kekkonen\(.*\) \".*\"\]/[metosin\/kekkonen\1 \"$1\"\]/g" **/*.md | |||
find . -name "*.$ext" -exec rm '{}' \; |
0 comments on commit
6bed625