-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
34 lines (32 loc) · 1.41 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
29
30
31
32
33
34
(defproject de.sveri/closp-crud "0.4.0-Snapshot"
:description "CRUD plugin for closp"
:url "https://github.com/sveri/closp-crud"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha3"]
[clj-liquibase "0.6.0"]
[clj-jdbcutil "0.1.0"]
[clj-dbcp "0.8.1"]
[org.clojure/tools.cli "0.3.1"]
[de.sveri/clojure-commons "0.2.0"]
[clj-time "0.9.0"]
[selmer "0.8.2"]
[hiccup "1.0.5"]
;; Microsoft SQL Server using the jTDS driver
[net.sourceforge.jtds/jtds "1.2.4"]
;; MySQL
[mysql/mysql-connector-java "5.1.25"]
;; PostgreSQL
[postgresql/postgresql "8.4-702.jdbc4"]
;; SQLite
[org.xerial/sqlite-jdbc "3.8.7"]
;; H2
[com.h2database/h2 "1.4.185"]]
:source-paths ["src"]
:test-paths ["test"]
:profiles {:dev {:resource-paths ["test-resources"]
:dependencies [[org.clojure/test.check "0.9.0"]]}}
:deploy-repositories [["clojars-self" {:url "https://clojars.org/repo"
:sign-releases false}]]
:test-refresh {:quiet true
:changes-only true})