File: project.clj

package info (click to toggle)
murphy-clojure 0.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 156 kB
  • sloc: makefile: 22; sh: 12
file content (13 lines) | stat: -rw-r--r-- 726 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
(defproject murphy "0.5.2"
  :description "Clojure library for better handling of bad situations."
  :url "https://gitlab.com/clj-murphy/murphy"
  :licenses [{:name "GNU Lesser General Public License, version 2.1 or newer"
              :url "https://www.gnu.org/licenses/lgpl-2.1.html"}
             {:name "Eclipse Public License 1.0 or newer"
              :url "http://www.eclipse.org/legal/epl-v10.html"}]
  :dependencies [[org.clojure/clojure "1.10.x"]]
  :profiles {:eastwood {:plugins [[jonase/eastwood "0.9.7"]]}}
  :eastwood {:config-files ["eastwood.clj"]}
  :aliases {"eastwood" ["with-profile" "+eastwood" "eastwood"]
            "check-all" ["do" "check," "eastwood," "test"]}
  :local-repo "debian/maven-repo")