-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
68 lines (58 loc) · 2.93 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
;; Copyright (C) 2021, 2022 SURFnet B.V.
;;
;; This program is free software: you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by the Free
;; Software Foundation, either version 3 of the License, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
;; more details.
;;
;; You should have received a copy of the GNU General Public License along
;; with this program. If not, see http://www.gnu.org/licenses/.
(defproject nl.surf/ooapi-gateway-configurator "0.1.0-SNAPSHOT"
:description "Configure the Surf OOAPI Gateway"
:license {:name "GPLv3"
:url "https://www.gnu.org/licenses/gpl-3.0.en.html"}
:url "https://github.com/SURFnet/ooapi-gateway-configurator"
:dependencies [[org.clojure/clojure "1.11.4"]
;; setup
[environ "1.2.0"]
[nl.jomco/envopts "0.0.4"]
;; web
[compojure "1.7.1"]
[hiccup "1.0.5"]
[ring-oauth2 "0.3.0"]
[ring/ring-core "1.12.2"]
[ring/ring-defaults "0.5.0"]
[ring/ring-jetty-adapter "1.12.2"]
[nl.jomco/clj-http-status-codes "0.1"]
[nl.jomco/ring-trace-context "0.0.8"]
;; data
[org.clojure/data.json "2.5.0"]
[org.clojure/core.cache "1.1.234"]
[clj-commons/clj-yaml "1.0.27"]
[datascript "1.7.3"]
;; logging
[org.clojure/tools.logging "1.3.0"]
[ch.qos.logback.contrib/logback-jackson "0.1.5"]
[ch.qos.logback.contrib/logback-json-classic "0.1.5"]
[ch.qos.logback/logback-classic "1.5.6"]
[com.fasterxml.jackson.core/jackson-core "2.17.2"]
[com.fasterxml.jackson.core/jackson-databind "2.17.2"]]
:main ^:skip-aot ooapi-gateway-configurator.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:target-path "target/uberjar"
:uberjar-name "ooapi-gateway-configurator.jar"}
:dev {:source-paths ["dev"]
:dependencies [[clj-kondo "RELEASE"]
[org.clojure/tools.namespace "RELEASE"]
[ring/ring-json "RELEASE"]
[ring/ring-mock "RELEASE"]]
:plugins [[lein-ancient "RELEASE"]]
:aliases {"lint" ["run" "-m" "clj-kondo.main" "--lint" "src"]
"check-deps" ["ancient" "check" ":no-profiles" ":exclude" "keep-this-version"]}}}
:repl-options {:init-ns user})