forked from owainlewis/clojure-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
14 lines (14 loc) · 743 Bytes
/
project.clj
File metadata and controls
14 lines (14 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(defproject io.forward/clojure-mail "1.0.8"
:description "Clojure Email Library"
:url "https://github.com/forward/clojure-mail"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.jsoup/jsoup "1.13.1"] ;; for cleaning up messy html messages
[jakarta.mail/jakarta.mail-api "2.1.3"]
[org.eclipse.angus/angus-mail "2.0.3"]
[medley "1.3.0"]]
:deploy-repositories [["releases" {:url "https://clojars.org/repo"
:creds :gpg}]]
:plugins [[lein-cljfmt "0.7.0"]]
:profiles {:dev {:dependencies [[com.icegreen/greenmail "1.6.1"]]}})