forked from xtdb/xtdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
28 lines (27 loc) · 1.11 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(def modules ["crux-core"
"crux-rdf"
"crux-rocksdb"
"crux-lmdb"
"crux-jdbc"
"crux-http-client"
"crux-http-server"
"crux-kafka-embedded"
"crux-kafka-connect"
"crux-kafka"
"crux-uberjar"
"crux-decorators"
"crux-test"])
(defproject juxt/crux "derived-from-git"
:description "An open source document database with bitemporal graph queries"
:url "https://github.com/juxt/crux"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:middleware [leiningen.project-version/middleware]
:plugins [[lein-sub "0.3.0"]]
:sub ~modules
:aliases {"check" ["sub" "-s" ~(clojure.string/join ":" (remove #{"crux-jdbc"} modules)) "check"]
"build" ["do" ["sub" "install"] ["sub" "test"]]}
:repositories [["snapshots" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:creds :gpg}]])