-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
32 lines (28 loc) · 1.16 KB
/
Copy pathproject.clj
File metadata and controls
32 lines (28 loc) · 1.16 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
(defproject org.clojars.jj/boa-sql-parent "1.0.13-SNAPSHOT"
:description "A library for frictionless SQL"
:url "https://github.com/ruroru/boa-sql"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:username :env/clojars_user
:password :env/clojars_pass}]]
:dependencies [[org.clojure/clojure "1.12.5"]]
:sub [
"boa-core"
"resource-resolver"
"jdbc-strategy"
"sequential-strategy"
"next-jdbc-adapter"
"next-jdbc-async-adapter"
"boa-sql"
]
:repositories [
["central" {:url "https://repo1.maven.org/maven2/" :snapshots false}]
["clojars" {:url "https://repo.clojars.org/"}]]
:plugins [[org.clojars.jj/bump "1.0.4"]
[org.clojars.jj/strict-check "1.1.0"]
[org.clojars.jj/lein-sub-bump "1.0.0"]
[lein-sub "0.3.0"]
[org.clojars.jj/lein-git-tag "1.0.1"]
[org.clojars.jj/bump-md "1.1.0"]]
)