mirror of
https://github.com/taoensso/telemere.git
synced 2025-12-16 17:41:12 +00:00
Some checks are pending
Clj tests / tests (17, ubuntu-latest) (push) Waiting to run
Clj tests / tests (19, ubuntu-latest) (push) Waiting to run
Clj tests / tests (21, ubuntu-latest) (push) Waiting to run
Cljs tests / tests (21, ubuntu-latest) (push) Waiting to run
Graal tests / tests (17, macOS-latest) (push) Waiting to run
Graal tests / tests (17, ubuntu-latest) (push) Waiting to run
Graal tests / tests (17, windows-latest) (push) Waiting to run
29 lines
833 B
Clojure
29 lines
833 B
Clojure
(defproject com.taoensso/telemere-slf4j "1.2.1"
|
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
|
:description "Telemere backend/provider for SLF4J API v2"
|
|
:url "https://www.taoensso.com/telemere"
|
|
|
|
:license
|
|
{:name "Eclipse Public License - v 1.0"
|
|
:url "https://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
:scm {:name "git" :url "https://github.com/taoensso/telemere"}
|
|
|
|
:java-source-paths ["src/java"]
|
|
:javac-options ["--release" "8" "-g"] ; Support Java >= v8
|
|
:dependencies []
|
|
|
|
:profiles
|
|
{:provided
|
|
{:dependencies
|
|
[[org.clojure/clojure "1.12.3"]
|
|
[org.slf4j/slf4j-api "2.0.17"]
|
|
[com.taoensso/telemere "1.2.1"]]}
|
|
|
|
:dev
|
|
{:plugins
|
|
[[lein-pprint "1.3.2"]
|
|
[lein-ancient "0.7.0"]]}}
|
|
|
|
:aliases
|
|
{"deploy-lib" ["do" #_["build-once"] ["deploy" "clojars"] ["install"]]})
|