forked from clojure/java.jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
43 lines (42 loc) · 2.44 KB
/
project.clj
File metadata and controls
43 lines (42 loc) · 2.44 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;; NOTE: This project.clj file exists purely to make it easier to
;; develop and test java.jdbc locally. The pom.xml file is the
;; "system of record" as far as the project version is concerned.
(defproject org.clojure/java.jdbc "0.7.0-SNAPSHOT"
:description "A low-level Clojure wrapper for JDBC-based access to databases."
:parent [org.clojure/pom.contrib "0.1.2"]
:url "https://github.com/clojure/java.jdbc"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]
:dependencies [[org.clojure/clojure "1.9.0-alpha11"]
;; These are just the versions most recently test against
;; for your own projects, use whatever version is most
;; appropriate for you. Again, note that this project.clj
;; file exists for convenience -- the pom.xml file is the
;; "system of record" as far as dependencies go!
[org.apache.derby/derby "10.12.1.1"]
[org.hsqldb/hsqldb "2.3.3"]
[com.h2database/h2 "1.4.191"]
[net.sourceforge.jtds/jtds "1.3.1"]
;; Tests fail with 6.0.2 driver:
[mysql/mysql-connector-java "5.1.39"]
[org.postgresql/postgresql "9.4.1210.jre7"]
[org.xerial/sqlite-jdbc "3.8.11.2"]
;; if you have the MS driver in your local repo
[sqljdbc4 "4.0"]
]
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0-master-SNAPSHOT"]]}
:dev {:dependencies [[org.clojure/test.check "0.9.0"]]}
}
:repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"
"ws-archiva" "https://d259tvauhnips9.cloudfront.net/archiva/repository/internal/"}
;; include dev profile with 1.9 to pull in test.check
:aliases {"test-all" ["with-profile" "test,1.4:test,1.5:test,1.6:test,1.7:test,1.8:dev,test,1.9" "test"]
"check-all" ["with-profile" "1.4:1.5:1.6:1.7:1.8:1.9" "check"]}
:min-lein-version "2.0.0")