2025-03-28 14:06:12 +00:00
|
|
|
(defproject metosin/reitit-core "0.8.0"
|
2017-10-26 16:25:09 +00:00
|
|
|
:description "Snappy data-driven router for Clojure(Script)"
|
2017-10-27 05:14:55 +00:00
|
|
|
:url "https://github.com/metosin/reitit"
|
2017-10-26 16:25:09 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
2018-09-04 16:21:07 +00:00
|
|
|
:scm {:name "git"
|
2019-03-01 11:20:43 +00:00
|
|
|
:url "https://github.com/metosin/reitit"
|
|
|
|
|
:dir "../.."}
|
2023-04-13 06:18:56 +00:00
|
|
|
:plugins [[lein-parent "0.3.9"]]
|
2017-10-28 09:47:55 +00:00
|
|
|
:parent-project {:path "../../project.clj"
|
|
|
|
|
:inherit [:deploy-repositories :managed-dependencies]}
|
2019-01-13 12:03:07 +00:00
|
|
|
:java-source-paths ["java-src"]
|
2023-05-05 09:56:02 +00:00
|
|
|
:javac-options ["-Xlint:unchecked" "-target" "1.8" "-source" "1.8"]
|
2017-10-28 09:47:55 +00:00
|
|
|
:dependencies [[meta-merge]])
|