|
1 | 1 | (defproject degasolv/degasolv "2.3.0-SNAPSHOT"
|
2 |
| - :description "Democratize dependency management." |
3 |
| - :url "https://github.com/djhaskin987/degasolv" |
4 |
| - :license {:name "Eclipse Public License" |
5 |
| - :url "http://www.eclipse.org/legal/epl-v10.html"} |
6 |
| - :deploy-repositories [["clojars" {:url "https://clojars.org/repo" |
7 |
| - :username :env/clojars_username |
8 |
| - :password :env/clojars_password |
9 |
| - :sign-releases false}]] |
| 2 | + :description "Democratize dependency management." |
| 3 | + :url "https://github.com/djhaskin987/degasolv" |
| 4 | + :license {:name "Eclipse Public License" |
| 5 | + :url "http://www.eclipse.org/legal/epl-v10.html"} |
| 6 | + :deploy-repositories [["clojars" {:url "https://clojars.org/repo" |
| 7 | + :username :env/clojars_username |
| 8 | + :password :env/clojars_password |
| 9 | + :sign-releases false}]] |
10 | 10 |
|
11 |
| - :dependencies [ |
12 |
| - [org.clojure/clojure "1.10.2-alpha1"] |
13 |
| - [org.flatland/ordered "1.5.9"] |
14 |
| - [org.martinklepsch/clj-http-lite "0.4.3"] |
15 |
| - ] |
16 |
| - :plugins [[lein-licenses "0.2.2"] |
17 |
| - [lein-print "0.1.0"]] |
| 11 | + :dependencies [[org.clojure/clojure "1.10.3"] |
| 12 | + [org.flatland/ordered "1.5.9"] |
| 13 | + [clj-http "3.12.0"]] |
| 14 | + ;;[org.martinklepsch/clj-http-lite "0.4.3"]] |
| 15 | + :plugins [[lein-licenses "0.2.2"] |
| 16 | + [lein-print "0.1.0"]] |
18 | 17 |
|
19 |
| - :java-source-paths ["src/java" |
20 |
| - "test/java"] |
21 |
| - :junit ["test/java"] |
22 |
| - :source-paths ["src"] |
| 18 | + :java-source-paths ["src/java" |
| 19 | + "test/java"] |
| 20 | + :junit ["test/java"] |
| 21 | + :source-paths ["src"] |
23 | 22 |
|
24 |
| - :global-vars {*warn-on-reflection* true} |
| 23 | + :global-vars {*warn-on-reflection* true} |
25 | 24 |
|
26 |
| - :test-selectors |
27 |
| - { |
28 |
| - :unit-tests :unit-tests |
29 |
| - } |
30 |
| - :profiles { |
31 |
| - :dev { |
32 |
| - :dependencies [ |
33 |
| - ;; extra deps |
34 |
| - [clj-wiremock "0.3.0"] |
35 |
| - [pjstadig/humane-test-output "0.9.0"] |
36 |
| - [org.clojure/core.match "0.3.0-alpha5"] |
| 25 | + :test-selectors |
| 26 | + {:unit-tests :unit-tests} |
| 27 | + :profiles {:dev {:source-paths ["src" "cli-src"] |
| 28 | + :managed-dependencies |
| 29 | + [[clj-http "3.12.0"] |
| 30 | + [clj-tuple "0.2.2"]] |
| 31 | + :dependencies [;; extra deps |
| 32 | + ;;[org.clojure/core.specs.alpha "0.2.56"] |
| 33 | + [clj-wiremock "0.3.0"] |
| 34 | + [pjstadig/humane-test-output "0.9.0"] |
| 35 | + [org.clojure/core.match "0.3.0-alpha5"] |
37 | 36 | ;; normal deps
|
38 |
| - [org.clojure/clojure "1.10.2-alpha1"] |
39 |
| - [org.flatland/ordered "1.5.9"] |
40 |
| - [org.martinklepsch/clj-http-lite "0.4.3"] |
| 37 | + [org.clojure/clojure "1.10.3"] |
| 38 | + [org.flatland/ordered "1.5.9"] |
| 39 | + [clj-http "3.12.0"] |
| 40 | + ;;[org.martinklepsch/clj-http-lite "0.4.3"] |
41 | 41 | ;; cli deps
|
42 |
| - [cheshire "5.9.0"] |
43 |
| - [com.velisco/tagged "0.5.0"] |
44 |
| - [org.clojure/tools.cli "0.3.5"] |
45 |
| - [serovers "1.6.2"] |
46 |
| - ] |
47 |
| - :plugins [[test2junit "1.4.2"]] |
48 |
| - :test2junit-output-dir "target/test-results" |
49 |
| - :injections [(require 'pjstadig.humane-test-output) |
50 |
| - (pjstadig.humane-test-output/activate!)] |
51 |
| - } |
52 |
| - :uberjar {:aot :all |
| 42 | + [cheshire "5.9.0"] |
| 43 | + [com.velisco/tagged "0.5.0"] |
| 44 | + [org.clojure/tools.cli "0.3.5"] |
| 45 | + [serovers "1.6.2"]] |
| 46 | + :plugins [[test2junit "1.4.2"]] |
| 47 | + :test2junit-output-dir "target/test-results" |
| 48 | + :injections [(require 'pjstadig.humane-test-output) |
| 49 | + (pjstadig.humane-test-output/activate!)]} |
| 50 | + :uberjar {:aot :all |
53 | 51 | ;; old aot list
|
54 | 52 | ;; [
|
55 | 53 | ;; degasolv.pkgsys.core
|
|
60 | 58 | ;; degasolv.resolver
|
61 | 59 | ;; degasolv.cli
|
62 | 60 | ;; ]
|
63 |
| - :main degasolv.cli |
64 |
| - :jvm-opts ["-Dclojure.compiler.direct-linking=true"] |
65 |
| - :source-paths ["src" "cli-src"] |
66 |
| - :dependencies [ |
67 |
| - ;; normal deps |
68 |
| - [org.clojure/clojure "1.10.2-alpha1"] |
69 |
| - [org.flatland/ordered "1.5.9"] |
70 |
| - [org.martinklepsch/clj-http-lite "0.4.3"] |
| 61 | + :main degasolv.cli |
| 62 | + :jvm-opts ["-Dclojure.compiler.direct-linking=true"] |
| 63 | + :source-paths ["src" "cli-src"] |
| 64 | + :dependencies [;; normal deps |
| 65 | + [org.clojure/clojure "1.10.3"] |
| 66 | + [org.flatland/ordered "1.5.9"] |
| 67 | + [clj-http "3.12.0"] |
| 68 | + ;;[org.martinklepsch/clj-http-lite "0.4.3"] |
71 | 69 | ;; cli deps
|
72 |
| - [cheshire "5.9.0"] |
73 |
| - [com.velisco/tagged "0.5.0"] |
74 |
| - [org.clojure/tools.cli "0.3.5"] |
75 |
| - [serovers "1.6.2"] |
| 70 | + [cheshire "5.9.0"] |
| 71 | + [com.velisco/tagged "0.5.0"] |
| 72 | + [org.clojure/tools.cli "0.3.5"] |
| 73 | + [serovers "1.6.2"] |
76 | 74 | ;; uberjar deps
|
77 |
| - [borkdude/clj-reflector-graal-java11-fix "0.0.1-graalvm-20.1.0"] |
78 |
| - ] |
79 |
| - } |
80 |
| - } |
81 |
| - :target-path "target/%s/" |
82 |
| - ) |
| 75 | + [borkdude/clj-reflector-graal-java11-fix "0.0.1-graalvm-20.1.0"]]}} |
| 76 | + :target-path "target/%s/") |
0 commit comments