Skip to content

Commit

Permalink
Add project.clj
Browse files Browse the repository at this point in the history
And bump dependencies.
  • Loading branch information
bzg committed Feb 26, 2021
1 parent 2fc97e8 commit 082f030
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:version "0.7.2"
{:version "0.7.3"
:description "Web application to subscribe to mailing lists."
:url "https://github.com/bzg/subscribe"
:license {:name "Eclipse Public License v2.0"
Expand All @@ -10,15 +10,15 @@
org.martinklepsch/clj-http-lite {:mvn/version "0.4.3"}
com.draines/postal {:mvn/version "2.0.4"}
com.taoensso/tempura {:mvn/version "1.2.1"}
com.taoensso/timbre {:mvn/version "5.1.0"}
com.taoensso/timbre {:mvn/version "5.1.2"}
commons-validator/commons-validator {:mvn/version "1.7"}
compojure/compojure {:mvn/version "1.6.2"}
hiccup/hiccup {:mvn/version "1.0.5"}
org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/clojure {:mvn/version "1.10.2"}
org.clojure/core.async {:mvn/version "1.3.610"}
ring/ring-core {:mvn/version "1.9.1"}
ring/ring-devel {:mvn/version "1.8.2"}
ring/ring-jetty-adapter {:mvn/version "1.8.2"}
ring/ring-devel {:mvn/version "1.9.1"}
ring/ring-jetty-adapter {:mvn/version "1.9.1"}
ring/ring-defaults {:mvn/version "0.3.2"}
}

Expand Down
31 changes: 31 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
;; Copyright (c) 2019-2021 Bastien Guerry <[email protected]>
;; SPDX-License-Identifier: EPL-2.0
;; License-Filename: LICENSES/EPL-2.0.txt

(defproject
subscribe "0.7.3"
:url "https://github.com/bzg/subscribe"
:description "Web application to subscribe to mailing lists."
:license {:name "Eclipse Public License v2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.2"]
[org.clojure/core.async "1.3.610"
:exclusions [org.clojure/tools.reader]]
[compojure "1.6.2"]
[hiccup "1.0.5"]
[ring/ring-core "1.9.1"]
[ring/ring-jetty-adapter "1.9.1"]
[ring/ring-devel "1.9.1"]
[ring/ring-defaults "0.3.2"]
[cheshire "5.10.0"]
[org.martinklepsch/clj-http-lite "0.4.3"]
[com.taoensso/tempura "1.2.1"]
[com.draines/postal "2.0.4"]
[com.taoensso/encore "3.12.1"]
[com.taoensso/timbre "5.1.2"]
[commons-validator "1.7"]]
:main core
:jvm-opts ["-Xmx500m"]
:profiles {:uberjar {:aot :all}}
:uberjar-name "subscribe-standalone.jar")

0 comments on commit 082f030

Please sign in to comment.