-
Notifications
You must be signed in to change notification settings - Fork 66
/
project.clj
19 lines (17 loc) · 992 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject org.clj-commons/clj-ssh
(or (System/getenv "PROJECT_VERSION") "0.6.0-SNAPSHOT")
:description "Library for using SSH from clojure."
:url "https://github.com/clj-commons/clj-ssh"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_org_clj_commons_password
:sign-releases true}]]
:dependencies [[org.clojure/tools.logging "1.2.4"
:exclusions [org.clojure/clojure]]
[com.github.mwiede/jsch "0.2.15"]
[net.java.dev.jna/jna "5.14.0"]
[com.kohlschutter.junixsocket/junixsocket-core "2.8.3" :extension "pom"]]
:jvm-opts ["-Djava.awt.headless=true"]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.10.1"]]}})