File: project.clj

package info (click to toggle)
clj-http-clojure 3.12.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 600 kB
  • sloc: makefile: 16
file content (47 lines) | stat: -rw-r--r-- 2,706 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject clj-http "3.12.3"
  :description "A Clojure HTTP library wrapping the Apache HttpComponents client."
  :url "https://github.com/dakrone/clj-http/"
  :license {:name "The MIT License"
            :url "http://opensource.org/licenses/mit-license.php"
            :distribution :repo}
  :global-vars {*warn-on-reflection* false}
  :min-lein-version "2.0.0"
  :exclusions [org.clojure/clojure]
  :dependencies [[org.apache.httpcomponents/httpcore "debian"]
                 [org.apache.httpcomponents/httpclient "debian"]
                 [org.apache.httpcomponents/httpclient-cache "debian"]
                 [org.apache.httpcomponents/httpasyncclient "debian"]
                 [org.apache.httpcomponents/httpmime "debian"]
                 [commons-codec "debian"]
                 [commons-io "debian"]
                 [slingshot "debian"]
                 [potemkin "debian"]]
  :resource-paths ["resources"]
  :profiles {:dev {:dependencies [;; optional deps
                                  [cheshire "5.10.0"]
                                  [crouton "0.1.2" :exclusions [[org.jsoup/jsoup]]]
                                  [org.jsoup/jsoup "1.13.1"]
                                  [org.clojure/tools.reader "1.3.5"]
                                  [com.cognitect/transit-clj "1.0.324"]
                                  [ring/ring-codec "1.1.3"]
                                  ;; other (testing) deps
                                  [org.clojure/clojure "1.10.3"]
                                  [org.clojure/tools.logging "1.1.0"]
                                  [ring/ring-jetty-adapter "1.9.3"]
                                  [ring/ring-devel "1.9.3"]
                                  ;; caching example deps
                                  [org.clojure/core.cache "1.0.207"]
                                  ;; logging
                                  [org.apache.logging.log4j/log4j-api "2.14.1"]
                                  [org.apache.logging.log4j/log4j-core "2.14.1"]
                                  [org.apache.logging.log4j/log4j-1.2-api "2.14.1"]]}
             :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
             :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
             :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
             :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
             :1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}}
  :aliases {"all" ["with-profile" "dev,1.6:dev,1.7:dev,1.8:dev,1.9:dev,1.10:dev"]}
  :test-selectors {:default  #(not (:integration %))
                   :integration :integration
                   :all (constantly true)}
  :local-repo "debian/maven-repo")