leiningen/test_projects/jvm-opts/project.clj

11 lines
422 B
Clojure
Raw Normal View History

;; This project is used for leiningen's test suite, so don't change
;; any of these values without updating the relevant tests. If you
;; just want a basic project to work from, generate a new one with
;; "lein new".
(defproject custom/args "0.0.1-SNAPSHOT"
:description "A test project"
2016-01-21 10:08:58 +00:00
:dependencies [[org.clojure/clojure "1.8.0"]]
:profiles {:no-op {}
:ascii {:jvm-opts ["-Dfile.encoding=ASCII"]}})