diff options
author | Morgan Astra <givengravity@gmail.com> | 2018-11-15 12:19:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 12:19:10 -0800 |
commit | 4ec5220185cda5a2fd81234ad4dcb444ab2ac4c0 (patch) | |
tree | 82fe697357ef609dbf2fad0e566a083f21d79052 /project.clj | |
parent | 7d0d3a445b4a55406edef4720251c9be747d301b (diff) | |
parent | 04d94c8935377e68292f78671428d564395b1641 (diff) |
Merge branch 'master' into feature/slash-or
Diffstat (limited to 'project.clj')
-rw-r--r-- | project.clj | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/project.clj b/project.clj index b14ac4e..dcd42d5 100644 --- a/project.clj +++ b/project.clj @@ -1,19 +1,20 @@ -(defproject witch-house/pronouns "1.11.0-SNAPSHOT" +(defproject witch-house/pronouns "1.12.0-SNAPSHOT" :description "Pronoun.is is a website for personal pronoun usage examples" - :url "http://pronoun.is" + :url "https://pronoun.is" :license "GNU Affero General Public License 3.0" - :dependencies [[org.clojure/clojure "1.6.0"] - [compojure "1.1.8"] - [ring/ring-jetty-adapter "1.2.2"] - [ring.middleware.logger "0.5.0"] - [ring/ring-devel "1.2.2"] - [environ "0.5.0"] - [hiccup "1.0.5"]] + :dependencies [[compojure "1.6.1"] + [environ "1.1.0"] + [hiccup "1.0.5"] + [lambdaisland/ring.middleware.logger "0.5.1"] + [org.clojure/clojure "1.9.0"] + [ring/ring-devel "1.7.1"] + [ring/ring-jetty-adapter "1.7.1"]] :min-lein-version "2.0.0" :plugins [[environ/environ.lein "0.2.1"] [lein-ring "0.9.7"]] :hooks [environ.leiningen.hooks] :uberjar-name "pronouns-standalone.jar" - :profiles {:production {:env {:production true}} - :dev {:dependencies [[midje "1.6.3"]]}} + ;; FIXME morgan.astra <2018-11-14 Wed> + ;; Is this production profile used for anything? + :profiles {:production {:env {:production true}}} :ring {:handler pronouns.web/app}) |