-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
19 lines (19 loc) · 1.02 KB
/
project.clj
File metadata and controls
19 lines (19 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.wotbrew/cinq "0.1.0-SNAPSHOT"
:description "Integrated query for Clojure"
:url "https://github.com/wotbrew/cinq"
:license {:name "MIT", :url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.11.1"]
[meander/epsilon "0.0.650"]]
:profiles {:dev {:dependencies [[io.airlift.tpch/tpch "0.10"]
[criterium "0.4.6"]
[org.lmdbjava/lmdbjava "0.9.0"]
[org.clojure/data.csv "1.1.0"]
[org.clojure/test.check "1.1.1"]
[com.gfredericks/test.chuck "0.2.14"]
[djblue/portal "0.56.0"]]
:source-paths ["dev"]}}
:javac-options ["-target" "1.8" "-source" "1.8"]
:java-source-paths ["src"]
:jvm-opts ^:replace ["--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-exports" "java.base/sun.nio.ch=ALL-UNNAMED"]
:repl-options {:init-ns cinq.core})