forked from replikativ/datalog-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (18 loc) · 819 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject io.lambdaforge/datalog-parser "0.1.8"
:description "Datalog parser."
:url "/~https://github.com/lambdaforge/datalog-parser"
:license {:name "EPL 1.0"
:url "https://www.eclipse.org/org/documents/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]]
:repositories [["clojars" {:url "https://clojars.org/repo"
:sign-releases false}]]
:profiles {:dev {:source-paths ["perf"]
:dependencies [[com.clojure-goes-fast/clj-async-profiler "0.4.1"]
[criterium "0.4.5"]]}}
:repl-options {:init-ns datalog.parser}
:deploy-repositories
[["clojars"
{:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}]])