-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproject.clj
29 lines (29 loc) · 2.41 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
(defproject com.github.clojure-lsp/lein-clojure-lsp "1.4.21"
:description "Lein plugin to run clojure-lsp features via API."
:url "https://clojure-lsp.github.io/clojure-lsp"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:eval-in-leiningen true
:pedantic? :abort
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:managed-dependencies [[com.fasterxml.jackson.core/jackson-core "2.18.0"]
[org.clojure/tools.cli "1.1.230"]]
:dependencies [[com.github.clojure-lsp/clojure-lsp-server "2025.03.27-20.21.36" :exclusions [babashka/fs
cheshire
org.jetbrains.kotlin/kotlin-stdlib-jdk7
com.fasterxml.jackson.dataformat/jackson-dataformat-smile
com.fasterxml.jackson.dataformat/jackson-dataformat-cbor
org.jetbrains.kotlin/kotlin-stdlib
org.jetbrains.kotlin/kotlin-stdlib-jdk8
org.jetbrains.kotlin/kotlin-stdlib-jdk7
io.opentelemetry/opentelemetry-context
io.opentelemetry/opentelemetry-api
org.clojure/tools.reader]]
[cheshire/cheshire "5.13.0"]
[babashka/fs "0.5.21"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.18.0"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.18.0"]
[org.clojure/tools.reader "1.5.0"]])