-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
project.clj
30 lines (30 loc) · 1.69 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
(defproject babashka/pod-babashka-sql
#=(clojure.string/trim
#=(slurp "resources/POD_BABASHKA_SQL_VERSION"))
:description "babashka pod for HSQLDB"
:url "https://github.com/borkdude/pod-babashka-hsqldb"
:scm {:name "git"
:url "https://github.com/borkdude/pod-babashka-hsqldb"}
:license {:name "Eclipse Public License 1.0"
:url "http://opensource.org/licenses/eclipse-1.0.php"}
:source-paths ["src"]
:resource-paths ["resources"]
:dependencies [[org.clojure/clojure "1.10.3"]
[com.github.seancorfield/next.jdbc "1.2.753"]
[nrepl/bencode "1.1.0"]
[com.cognitect/transit-clj "1.0.324"]
[cheshire/cheshire "5.10.1"]]
:profiles {:uberjar {:global-vars {*assert* false}
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"-Dclojure.spec.skip-macros=true"]
:aot :all
:main pod.babashka.sql}
:feature/postgresql {:dependencies [[org.postgresql/postgresql "42.2.20"]]}
:feature/mssql {:dependencies [[com.microsoft.sqlserver/mssql-jdbc "9.2.0.jre11"]]}
:feature/hsqldb {:dependencies [[org.hsqldb/hsqldb "2.6.0"]]}
:feature/mysql {:dependencies [[mysql/mysql-connector-java "8.0.25"]]}
:feature/oracle {:dependencies [[io.helidon.integrations.db/ojdbc "2.3.0"]]}} ; ojdbc10 + GraalVM config, by Oracle
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_pass
:sign-releases false}]])