|
1 |
| -(defproject metosin/compojure-api "1.1.15-SNAPSHOT" |
| 1 | +(defproject metosin/compojure-api "2.0.0-alpha34-SNAPSHOT" |
2 | 2 | :description "Compojure Api"
|
3 | 3 | :url "https://github.com/metosin/compojure-api"
|
4 | 4 | :license {:name "Eclipse Public License"
|
5 | 5 | :url "http://www.eclipse.org/legal/epl-v10.html"
|
6 | 6 | :distribution :repo
|
7 | 7 | :comments "same as Clojure"}
|
8 |
| - :scm {:name "git" |
9 |
| - :url "https://github.com/metosin/compojure-api"} |
10 |
| - :dependencies [[prismatic/plumbing "0.6.0"] |
11 |
| - [cheshire "5.13.0"] |
12 |
| - [compojure "1.6.1"] |
13 |
| - [prismatic/schema "1.1.12"] |
14 |
| - [org.tobereplaced/lettercase "1.0.0"] |
15 |
| - [frankiesardo/linked "1.3.0"] |
16 |
| - [ring-middleware-format "0.7.4"] |
| 8 | + :dependencies [[prismatic/schema "1.1.12"] |
| 9 | + [prismatic/plumbing "0.5.5"] |
| 10 | + [ikitommi/linked "1.3.1-alpha1"] ;; waiting for the original |
| 11 | + [metosin/muuntaja "0.6.6"] |
| 12 | + [com.fasterxml.jackson.datatype/jackson-datatype-joda "2.10.1"] |
| 13 | + [ring/ring-core "1.8.0"] |
| 14 | + [compojure "1.6.1" ] |
| 15 | + [metosin/spec-tools "0.10.6"] |
17 | 16 | [metosin/ring-http-response "0.9.1"]
|
| 17 | + [metosin/ring-swagger-ui "3.24.3"] |
18 | 18 | [metosin/ring-swagger "1.0.0"]
|
19 |
| - [metosin/ring-swagger-ui "2.2.10"]] |
| 19 | + |
| 20 | + ;; Fix dependency conflicts |
| 21 | + [clj-time "0.15.2"] |
| 22 | + [joda-time "2.10.5"] |
| 23 | + [riddley "0.2.0"]] |
| 24 | + :pedantic? :abort |
20 | 25 | :profiles {:uberjar {:aot :all
|
21 | 26 | :ring {:handler examples.thingie/app}
|
22 | 27 | :source-paths ["examples/thingie/src"]
|
23 | 28 | :dependencies [[org.clojure/clojure "1.9.0"]
|
24 | 29 | [http-kit "2.3.0"]
|
25 | 30 | [reloaded.repl "0.2.4"]
|
26 | 31 | [com.stuartsierra/component "0.4.0"]]}
|
27 |
| - :dev {:jvm-opts ["-Dcompojure.api.core.allow-dangerous-middleware=true"] |
28 |
| - :repl-options {:init-ns user} |
29 |
| - :plugins [[lein-clojars "0.9.1"] |
30 |
| - [lein-midje "3.2.1"] |
31 |
| - [lein-ring "0.12.0"] |
| 32 | + :dev {:plugins [[lein-clojars "0.9.1"] |
| 33 | + [lein-ring "0.12.5"] |
32 | 34 | [funcool/codeina "0.5.0"]]
|
33 | 35 | :dependencies [[org.clojure/clojure "1.9.0"]
|
34 |
| - ;; bump |
35 |
| - [fipp "0.6.26"] |
36 |
| - [metosin/spec-tools "0.10.6"] |
37 |
| - [metosin/muuntaja "0.6.6"] |
38 |
| - [metosin/jsonista "0.2.5"] |
39 |
| - [com.fasterxml.jackson.datatype/jackson-datatype-joda "2.10.1"] |
40 |
| - [slingshot "0.12.2"] |
41 |
| - [peridot "0.5.1"] |
42 |
| - [javax.servlet/servlet-api "2.5"] |
43 |
| - [midje "1.9.9"] |
| 36 | + [org.clojure/core.unify "0.6.0"] |
| 37 | + [org.clojure/core.async "0.6.532"] |
| 38 | + [javax.servlet/javax.servlet-api "4.0.1"] |
| 39 | + [peridot "0.5.2"] |
44 | 40 | [com.stuartsierra/component "0.4.0"]
|
| 41 | + [expound "0.8.2"] |
| 42 | + [metosin/jsonista "0.2.5"] |
45 | 43 | [reloaded.repl "0.2.4"]
|
| 44 | + [metosin/muuntaja-msgpack "0.6.6"] |
| 45 | + [metosin/muuntaja-yaml "0.6.6"] |
| 46 | + [org.immutant/immutant "2.1.10"] |
46 | 47 | [http-kit "2.3.0"]
|
47 | 48 | [criterium "0.4.5"]]
|
| 49 | + :jvm-opts ["-Dcompojure.api.meta.static-context-coach={:default :assert :verbose true}"] |
| 50 | + :test-paths ["test19"] |
48 | 51 | :ring {:handler examples.thingie/app
|
49 | 52 | :reload-paths ["src" "examples/thingie/src"]}
|
50 | 53 | :source-paths ["examples/thingie/src" "examples/thingie/dev-src"]
|
51 | 54 | :main examples.server}
|
52 | 55 | :perf {:jvm-opts ^:replace ["-server"
|
53 | 56 | "-Xmx4096m"
|
54 | 57 | "-Dclojure.compiler.direct-linking=true"]}
|
55 |
| - :logging {:dependencies [[org.clojure/tools.logging "0.5.0"]]} |
| 58 | + :logging {:dependencies [[org.clojure/tools.logging "0.5.0"] |
| 59 | + [org.slf4j/jcl-over-slf4j "1.7.30"] |
| 60 | + [org.slf4j/jul-to-slf4j "1.7.30"] |
| 61 | + [org.slf4j/log4j-over-slf4j "1.7.30"] |
| 62 | + [ch.qos.logback/logback-classic "1.2.3" ]]} |
56 | 63 | :1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}
|
57 | 64 | :1.11 {:dependencies [[org.clojure/clojure "1.11.3"]]}
|
58 |
| - :1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha11"]]}} |
| 65 | + :1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha11"]]} |
| 66 | + :async {:jvm-opts ["-Dcompojure-api.test.async=true"] |
| 67 | + :dependencies [[manifold "0.1.8" :exclusions [org.clojure/tools.logging]]]}} |
59 | 68 | :eastwood {:namespaces [:source-paths]
|
60 | 69 | :add-linters [:unused-namespaces]}
|
61 | 70 | :codeina {:sources ["src"]
|
|
79 | 88 | ["change" "version" "leiningen.release/bump-version"]
|
80 | 89 | ["vcs" "commit"]
|
81 | 90 | ["vcs" "push"]]
|
82 |
| - :aliases {"all" ["with-profile" "dev:dev,logging:dev,1.10:dev,1.11:dev,1.12"] |
| 91 | + :aliases {"all" ["with-profile" "dev:dev,async:dev,1.10:dev,1.11:dev,1.12"] |
83 | 92 | "start-thingie" ["run"]
|
84 | 93 | "aot-uberjar" ["with-profile" "uberjar" "do" "clean," "ring" "uberjar"]
|
85 |
| - "test-ancient" ["midje"] |
| 94 | + "test-ancient" ["test"] |
86 | 95 | "perf" ["with-profile" "default,dev,perf"]
|
87 | 96 | "deploy!" ^{:doc "Recompile sources, then deploy if tests succeed."}
|
88 |
| - ["do" ["clean"] ["midje"] ["deploy" "clojars"]]}) |
| 97 | + ["do" ["clean"] ["test"] ["deploy" "clojars"]]}) |
0 commit comments