File: project.clj

package info (click to toggle)
leiningen-clojure 2.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,124 kB
  • sloc: xml: 925; sh: 776; lisp: 46; makefile: 45; java: 16
file content (37 lines) | stat: -rw-r--r-- 1,931 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
(defproject leiningen-core "2.11.2"
  :url "https://codeberg.org/leiningen/leiningen"
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :description "Library for core functionality of Leiningen."
  ;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
  :dependencies [[org.clojure/clojure "1.x"]
                 [timofreiberg/bultitude "debian"
                  :exclusions [org.clojure/clojure
                               org.tcrawley/dynapath]]
                 [org.flatland/classlojure "debian"]
                 [robert/hooke "debian"]
                 [clj-commons/pomegranate "debian"
                  :exclusions [org.slf4j/jcl-over-slf4j org.slf4j/slf4j-api
                               org.apache.maven.wagon/wagon-provider-api
                               org.apache.httpcomponents/httpcore
                               org.apache.httpcomponents/httpclient]]
                 ;; This override is required to pin the right versions in
                 ;; Debian
                 [org.apache.maven/maven-resolver-provider "3.x"]
                 [nrepl/nrepl "debian"]

                 [com.hypirion/io "debian"]
                 [org.slf4j/slf4j-nop "debian"] ; wagon-http uses slf4j
                 ;; we pull this in transitively but want a newer version
                 [org.clojure/tools.macro "debian"]
                 ;; this new version doesn't bring in a dependency on
                 ;; an insecure version of jsoup
                 [org.apache.maven.wagon/wagon-http "debian"
                  :exclusions [org.slf4j/slf4j-api]]
                 [commons-io/commons-io "debian"]]
  :scm {:dir ".."}
  :dev-resources-path "dev-resources"
  :aliases {"bootstrap" ["with-profile" "base"
                         "do" "install," "classpath" ".lein-bootstrap"]}
  :offline? true
  :local-repo "../debian/maven-repo")